I'm trying to find whether a file exists (using the -e option) and to read from it (using @lines = <FILE>), both are not working with names (of files or directories) that contain (for instance) Japanese chars.
You are doing something strange you don't tell us since it should work. perl -e "if ( -e '日本語' ) { print 'OK'; }" works if 日本語 exists. – MatteoMay 31 '12 at 7:02
perl -e "if ( -e '日本語' ) { print 'OK'; }"works if 日本語 exists. – Matteo May 31 '12 at 7:02