Tagged Questions

3
votes
1answer
1k views

Recursive directory listing using Ruby with Chinese characters in file names

I would like to generate a list of files within a directory. Some of the filenames contain Chinese characters. eg: [试验].Test.txt I am using the following code: require 'find' dirs = ["TestDir"] for ...
2
votes
1answer
416 views

custom directory listing handler in ruby for nginx

I just found this question on serverfault which details how to create a custom directory listing handler for nginx with a php script. I would like to do the same thing but with a ruby script. ...
2
votes
3answers
566 views

How to order files by last modified time in ruby?

How to get files in last modified time order in ruby? I was able to smash my keyboard enough to achieve this: file_info = Hash[*Dir.glob("*").collect {|file| [file, File.ctime(file)]}.flatten] ...
0
votes
6answers
937 views

Getting a list of folders in a directory

How do I get a list of the folders that exist in a certain directory with ruby? Dir.entries() looks close but I don't know how to limit to folders only.