Onetastic Macro Documentation >
>
>
FileSystem_CreateFolder FileSystem_CreateFolder
Creates a folder inside a given parent folder with the given name. Returns the folder object if it is successfully created.
Syntax
Folder FileSystem_CreateFolder(
Folder|String parent,
String name)
Parameters
- Folder|String parent
- Parent folder to create the new folder in. This can either be a Folder object or a String that contains the full path to the parent folder. The parent folder must already exist.
- String name
- The name for the new folder.
Examples
$folder = FileSystem_CreateFolder("c:\\temp", "subfolder")
if (IsObject($folder))
|