主頁(yè) > 知識(shí)庫(kù) > Ruby遍歷文件夾同時(shí)計(jì)算文件的md5sum

Ruby遍歷文件夾同時(shí)計(jì)算文件的md5sum

熱門標(biāo)簽:湖州u友防封電銷卡 地圖標(biāo)注賺錢項(xiàng)目注冊(cè) 常德電銷平臺(tái)外呼系統(tǒng)軟件價(jià)格 高德地圖標(biāo)注客服 百度地圖標(biāo)注自定義圖片 電銷機(jī)器人廠商代理 滴滴外呼系統(tǒng) 徐州網(wǎng)絡(luò)外呼系統(tǒng)哪個(gè)好 白銀外呼paas系統(tǒng)
#!/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)

標(biāo)簽:張家界 公主嶺 永州 梧州 遼寧 荊門 普洱 三沙

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ruby遍歷文件夾同時(shí)計(jì)算文件的md5sum》,本文關(guān)鍵詞  Ruby,遍歷,文件夾,同時(shí),計(jì)算,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ruby遍歷文件夾同時(shí)計(jì)算文件的md5sum》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Ruby遍歷文件夾同時(shí)計(jì)算文件的md5sum的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章