Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: While is not working when using variable

by Anonymous Monk
on Aug 31, 2015 at 08:32 UTC ( [id://1140507]=note: print w/replies, xml ) Need Help??


in reply to While is not working when using variable

Add use autodie; to the top of your program, it will generate a message explaining what happened
  • Comment on Re: While is not working when using variable

Replies are listed 'Best First'.
Re^2: While is not working when using variable
by parthodas (Acolyte) on Aug 31, 2015 at 08:47 UTC
    On using autodie, it is showing the error message that no such file or directory. But when harcoding the same path, the script is running.
    Can't open('FILE', '$filename'): No such file or directory at sblmaint.pl

      Try this:

      print '$filename', "\n"; print "$filename", "\n";

      And for more information, you can read this tutorial on quotes in perl.

        This helped a lot. Using double quote and double slash resolved the issue. Thanks a lot.
      In addition to Eilys hint, try
      print $filename, "\n";
      Note that, if you have your complete filename in a variable, like in your OP (and as you should, as it eases debugging and error messages), quoting it in the open statement is superfluous.

      Besides, most Windows functions and many programs accept forward slashes, so you can write

      my $filename="$mydir/file_detail.txt"; open (FILE, "<", $filename);
      Update: corrected quotes - d'oh! Thanks AnomalousMonk!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1140507]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-25 08:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found