Programming Reference Manual
 
Syntax
 
MakeNewDir(path$)
 
Description
Builds a new dir path, and ignores (parts of the) path if it exists.
 
Parameter
Description
path$
The specified path thats needs to created.
See Also
Example
 
Sub Main
    MakeNewDir "C:\Temp\Received Files\" & Format$(Now(), "yyyy-mm-dd")
End Sub