
alantyss
Deleted
Jul 28, 2000, 6:13 AM
Post #1 of 2
(407 views)
|
|
Would this create a new file?
|
Can't Post
|
|
Will the code below make a new file rawdata.txt if it does not exist? And will opening it with >> allow me to constantly append a new line of text into the file? $newoutfile = "rawdata.txt"; open (OUTFILE, ">>$newoutfile")or die "Cannot write to file rawdata.txt; $!\n";
|