GalacTekM
09-19-2008, 01:40 PM
I'm trying to create a folder using a variable for part of the name. I want to create a folder in the source folder named DBU_(the current date) and have been unsuccessfull. This is what i have so far:
date = System.GetDate(DATE_FMT_US);
Folder.Create("%SourceFolder%:\\DBU_"..date.."");
Once the folder is created, i want to copy files from the source directory into the created folder but im not sure how to tackle that task. Any help would be appreciated. Thanks
date = System.GetDate(DATE_FMT_US);
Folder.Create("%SourceFolder%:\\DBU_"..date.."");
Once the folder is created, i want to copy files from the source directory into the created folder but im not sure how to tackle that task. Any help would be appreciated. Thanks