ruby实现删除自定义后缀名文件Find

#encoding: gbk

require 'find'

print "输入目录:"

path=gets.chomp!

print "输入后缀名:"

basename=gets.chomp!

Find.find("#{path}") do |d|

 if d.include?(".torrent")

	 puts "[INFO]删除文件#{d}"

 end

end

 应该不是 多线程实现的,对于自己用,很实用,对于文件多的,可怕性能有点。。

你可能感兴趣的:(Ruby)