From: Bill Kelly Date: 2010-06-27T18:32:17+09:00 Subject: Re: Can Ruby 1.9.1 filenames with unicode characters on Windows? Jian Lin wrote: > Can Ruby 1.9.1 finally get a list of filenames if the filenames have > unicode characters on Windows? 1.9.1 can't, but 1.9.2 is much improved. The situation is covered in some detail here: http://redmine.ruby-lang.org/issues/show/1685 But essentially: utf8_result = Dir.entries(path, :encoding => "UTF-8") Regards, Bill