萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Ruby遍歷文件夾同時計算文件的md5sum

Ruby遍歷文件夾同時計算文件的md5sum

   這篇文章主要介紹了Ruby遍歷文件夾同時計算文件的md5sum,本文直接給出實現代碼,需要的朋友可以參考下

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 #!/usr/bin/ruby -w # require 'digest/md5'   if ARGV.empty? puts "usgae: #$0 path" exit 0 end dir_name=ARGV.shift   def dir_md5sum(path) md5s=Array.new if File.directory?(path) Dir.new(path).each do |file| next if file =~ /^.+$/ file="#{path}/#{file}" if File.directory?(file) dir_md5sum(file) elsif File.file?(file) md5="#{Digest::MD5.hexdigest(File.read(file))} #{file}" md5s.push(md5) end end elsif File.file?(path) md5="#{Digest::MD5.hexdigest(File.read(path))} #{path}" md5s.push(md5) else puts "Ivalid File type" exit 2 end md5s.each do |item| puts item   end end   dir_md5sum(dir_name)
copyright © 萬盛學電腦網 all rights reserved