Saved Bookmarks
| 1. |
Solve : Renaming a File to INCLUDE BOTH Date & Time Stamp? |
|
Answer» Quote Several times a day, you want to backup a file C:\folder1\catalog.MDB to C:\folder2\catalog <timestamp>.mdb. The FOLLOWING script in biterscripting ( http://www.biterscripting.com/install.html - it is free) will do the job. Code: [Select]system copy "C:\folder1\catalog.mdb" ("\"C:\folder2\catalog "+gettime()+".mdb\"") Come to THINK of it, there is only one line in this script. J |
|