Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Your help is highly appreciated.

share|improve this question
2  
Could you please post an example? What are you doing? – Matteo May 31 '12 at 6:59
2  
1  
You are doing something strange you don't tell us since it should work. perl -e "if ( -e '日本語' ) { print 'OK'; }" works if 日本語 exists. – Matteo May 31 '12 at 7:02
2  
What OS do you use? – ikegami May 31 '12 at 7:08
1  
show 2 more comments

1 Answer

I suggest you give it a try with a file in your current directory, just in case the '\' doesn't work as expected.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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