Monday, May 21, 2012
   
Text Size

FSO.CREATEFOLDER Function

Below are example FSO.CREATEFOLDER Function:

 IF FSO.FolderExists ("c:\temp2") Then    'Check to see if c:\temp2 folder exists
Else
 FSO.CreateFolder ("c:\temp2")    'If Folder Does Not Exist - Create It
End If

Please Note: Append to Template.vbs to run this script.