Xbasic
FILE.DIR_CREATE Function
Syntax
V FILE.Dir_Create(C newdirectory)
Arguments
- newdirectoryCharacter
The path and name of the new directory.
Description
Creates a new directory.
Discussion
The FILE.DIR_CREATE() method creates a new directory.
Example
FILE.dir_create("c:\new_directory")
This method will create only one level of directory. For example if you want to create c:\files\new, then c:\files must exist.
See Also