フォルダー内の最も古いAVIファイルを見つけて削除するRubyスクリプトを作成しようとしています。私はPythonで非常に近いスクリプトを見つけ、Rubyソリューションを自分で良いスタートを切りました。
require 'fileutils'
stat = Sys::Filesystem.stat("/")
mb_available = stat.block_size * stat.blocks_available / 1024 / 1024
#if there is less than 130MB free
if mb_available < 130000
require 'find'
movie_file_paths = []
#grab all the files in the folder
Find.find('/Users/jody/Movies') do |path|
movie_file_paths << path if /.*\.avi/.match(path) != nil
end
end
しかし、私は他の人たちと大変な時間を過ごしています。どんな助けでもいただければ幸いです!
編集:
これが解決策でした:
movie_file_paths = []
Dir.glob("/Users/jody/Movies/**/*.avi").each { |file| movie_file_paths << file if File.file? file }
movie_file_paths.sort_by {|f| File.mtime(f)}
deleteme = movie_file_paths.first