1
vote
0answers
76 views

How to list files that was modified last from a directory using ruby

# 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/", ...
1
vote
3answers
1k views

How can you find the most recently modified folder in a directory using Ruby?

How can you find the most recently modified folder (NOT A FILE) in a directory using Ruby?