in reply to open fails with no error code
As far as your "No such file..." message, one way to verify that the file does exist is to either use stat() or something like -f $path to check it's existance, but open() should work ok for this. Also, make sure you are either using a full path on the open() call or that you really are chdir'd into the correct directory.
|
|---|