| |
mbouchard
Posts: 1922
Score: 16
Joined: 5/15/2003
From: USA
Status: offline
|
You will need to replace the / from the date with something else as / is an invalid char to use in a foldername. So this line Set FLD=FSO.CreateFolder("C:\Documents and Settings\" & date) Should be changed to Set FLD=FSO.CreateFolder("C:\Documents and Settings\" & replace(date,"/","-")) OR NewDate = replace(date,"/","-") Set FLD=FSO.CreateFolder("C:\Documents and Settings\" & NewDate)
|
|