SpringFlowers AutumnMoon wrote:
> with the Dir[" path "]
> or Dir.glob
> 
> is it possible to glob the filenames with unicode or international
> characters in it?  Right now it is returning  ????????.mp3
> 

I think that means your display device doesn't understand the 
characters--not that ruby is unable to retrieve those filenames.  For 
instance, if I have a file named:

ááá.txt

in the current directory, and I write:


arr = Dir['*']
puts arr

I get:

...
...
ááá.txt
...
...
-- 
Posted via http://www.ruby-forum.com/.