Ruby遍历文件夹同时计算文件的md5sum
时间:2021-09-06 09:00:28|栏目:Ruby|点击: 次
#!/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)
上一篇:详解Ruby on Rails中的Cucumber使用
栏 目:Ruby
下一篇:简单谈谈Ruby的private和protected
本文地址:http://www.codeinn.net/misctech/172837.html






