in reply to Why can't I open a file for writing?
will probably fail, or, at the very least, not work as expected, because the new file to be created will look like /some/directory/here/subdirectory/some/directory/here/foo.txt which is presumably not what you want. So you probably to extract the file name (without the path) before assigning outputfile or use some other means for creating the list of files.$outputfile = $inputfile; open NEWFILE, '>', "$dir/subdirectory/$outputfile" or die "... $!" +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Why can't I open a file for writing?
by karlgoethebier (Abbot) on Jan 14, 2018 at 10:32 UTC |