# List the file that was updated the last
lst_fl = Dir.glob("/home/developer/myFiles/*")
files_updated_last = Dir["/home/developer/myFiles/*"]
Dir.glob(File.join("/home/developer/myFiles/", '*.rb')).each do |lst_fl|
files_updated_last.sort_by{|lst_fl| File.mtime(lst_fl)}
end
puts files_updated_last
以上是我的红宝石代码。我想根据文件的最后修改时间以排序方式列出文件。请帮助如何实现这一目标?使用此代码,我只是获取文件列表,但不是以最后修改时间的有序方式。
我想要根据上次修改时间的文件列表