I have a report running through a batch file in the "AT Command". It kicks off an MS Access Database and runs my report. Once the report is finished, I output the report as a Pipe Delimited file to a network drive. Then, I use a batch file - which uses a Control File to place the report out to an ftp site.
Here is the Batch File:
ftp -s:\NetworkDrive\ControlFile.txt
exit
Here is the Control File:
open ftp.Site.com
Username
Password
put \NetworkDrive\File.txt
quit
What I am trying to do is attach the System Date to the end of the file name so that it doesn't write over yesterday's file. I would like it to be called something like "File_07_09_2002.txt". The catch is that I want it to automatically do this so that I don't have to manually change the name in my Control File every morning. Yuck huh?!?
Thanks for your help!