Append text to Save Text File function
Hi All,
I am using this function as part of the FOR loop.
If( File Exists(location)
csvlist[N Items(FilesIndex)]= Open(location),
//else below
continue() & // I am not sure this & function works.
Save Text File( path || "\" || "error.txt", "
\!"File doesnt exist\!";
" ||char(location)) ;
);
Basically what I want to do is, I want to open the location if file exists, if not, I want to...