vote up 0 vote down star

i was writing a script on Windows Vista to move the files in a folder to another hard drive, but found that Ruby 1.8.6 or 1.9 both would get back filenames with Unicode characters in it replaced by "??????"

so for example, the filename "Chart for ???????.doc" is returned

so the file cannot be moved at all...

i used

filename.each_byte {|x| p x}

to make sure it is internally really "?" characters inside the string, not just when it is printed out.

flag

24% accept rate

1 Answer

vote up 0 vote down

Ruby supports utf8, but not multibyte. You have to use third libraries as http://ruby-unicode.rubyforge.org/doc/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.