http://www.perlmonks.org?node_id=626628

perladdict has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on By using open() unable to open the file

Replies are listed 'Best First'.
Re: By using open() unable to open the file
by Corion (Patriarch) on Jul 14, 2007 at 13:37 UTC

    You do not show us what error message you get. This is most important to us. Also, you do not show us what the value of $path is. Most likely, it is not what you believe it is. Also, I note that this exact problem is already discussed in problem to open a specified path file in open system call. I consider it rather rude of you to ignore the responses you got there and to create a new thread instead.

    On a more practical side, I'm confident that you will find the following code explains your error to you:

    use strict; use warnings; my $path1 = "..."; open my $fh, "<", $path1 or die "Can't open file '$path1': $!";
    A reply falls below the community's threshold of quality. You may see it by logging in.