torres09 has asked for the wisdom of the Perl Monks concerning the following question:
i have opened a file as shown in code and called sub routines which need to access the file , but i can't open the file . I am new to perl so any form of help is appreciated
print " Please input your new csv file \n"; my $ csv_name =<>; my $file_csv="$csv_name"; open(FILE_csv,"<","$file_csv")|| die ("can't open the csv file \n" +); @array_A= column_segregation_Spec_values (1); # function call close FILE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: opening a file
by choroba (Cardinal) on Jun 13, 2013 at 14:19 UTC |