Eyeon:Script/Reference/Libraries/eyeon/createdir
From VFXPedia
< Eyeon:Script | Reference | Libraries | eyeon
Contents |
Usage
eyeon.createdir(string path)
- path (string, required)
A string representing the path of the directory to be created.
Returns
A boolean (true / false) value indicating if the function is successful
Remarks
It does not matter if the path terminates with a directory separator, c:\dir and c:\dir\ will both create the same directory. This function will create as many directories as are required to satisfy the string. For example the code eyeon.createdir("c:\\path1\\path2") will create both path1 and path2.
Requirements
- eyeonScript 5.1
Examples