|
|
| Don't ask to ask, just ask | |
| PerlMonks |
Re: Noob Questionby bms (Monk) |
| on Oct 28, 2012 at 20:10 UTC ( #1001288=note: print w/ replies, xml ) | Need Help?? |
|
Hello there! Well, there are a lot of ways you could go about this. I'll list three very easy to implement ones, each with a different approach One, simply cd into the script directory and run your script from there. cd C:\\ScriptsTwo, use File::Basename so you can build an absolute path to your test1.txt file using dirname:
The above code works because your test1.txt file is located in the same directory as your script and therefore, you can use dirname with the __FILE__ variable(or $0) and simply tack on the filename to get a path to your text file. Three, you could use an absolute path:
As you can see, there is more than one way to do it. There are still more ways than I have listed, but they should be sufficient :).
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||