in reply to Re^4: Can't Find File When Non-ASCII Letters Appear in Path
in thread Can't Find File When Non-ASCII Letters Appear in Path

You're not really using HTML entities, right? So what are you using? If you're trying to enter the characters in a text editor that might not work. Try using Perl escapes - like "\x080" - to construct your string.

Also, did you try my readdir() suggestion? I still think it could help...

-sam

  • Comment on Re^5: Can't Find File When Non-ASCII Letters Appear in Path

Replies are listed 'Best First'.
Re^6: Can't Find File When Non-ASCII Letters Appear in Path
by emav (Pilgrim) on Apr 16, 2007 at 20:22 UTC
    Thanks again for the reply, Sam.

    Of course, I'm not using html entities. ;-)

    Yes, I tried your readdir() suggestion but the problem is that as non-ASCII characters appear in the path, I get a similar error message (directory not found, etc).
      Work your way back up the path. Surely there's a directory on your filesystem you can read which contains non-ASCII entries, even if it's C:\!

      -sam