Page 1 of 1
New Folder
Posted: Wed May 18, 2005 8:58 pm
by Robert Daggar
I want to check if a folder already exists and if not, create it. Is there an easy way to do this?
New Folder
Posted: Wed May 18, 2005 9:13 pm
by Oleg
There is macrofunction {FolderExists(Folder_Name)}. It returns TRUE or FALSE.
Your task will look so:
If {FolderExists(SomeFolder)} is FALSE
Create Folder SomeFolder
End if