Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

read file with optional path

Status
Not open for further replies.

jr8rdt

IS-IT--Management
Feb 9, 2006
59
US
hello

this one below works if you run the program on the same directory as a.txt

a.txt is an argument

$data_file="a.txt";
open(DAT, $data) || die("Could not open file!");

but, if you run this program from different directory, even with path being specified it won't work

say the program is aa.pl
both aa.pl and a.txt are in /local/program/directory
and from / directory

I do

perl /local/program/directoryaa.pl a.txt
it will complain that a.txt can't be found

what to do ?
 
You should provide the full path to a.txt in your script.
$data_file = '/path/to/a.txt';

Your open statement says $data but it should say $data_file

Also.. in your die statement.. always add $! as it will give you a lot of important information
I normally do something like:
die "Can't open file $data_file :$!\n";


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
what about if the file is an argument and I wanna be able to run it from everywhere by specifying the path
 
if the path is constant just make it a variable.

my $dir = '/path/to/files/';
chomp @ARGV;
my $file = ARGV[0];
open(FILE, "$dir$file") or die "Can't open $dir$file : $!\n";


Not tested :)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
You could use File::Basename and take the path from the $0 variable.
 
what about if the file is an argument and I wanna be able to run it from everywhere by specifying the path
You need to handle/validate if a.txt really exist on your server by using -e file option.
e.g.
Code:
my $data_file = $ARGV[0] ;
if ( !-e $data_file )
{
 print "File a.txt does exist in given path!!" ;
 exit ;
}

--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top