Creates a new directory.
successful = RTI_OS_Directory( "CREATE", directory <, createPath> ) |
| directory | createPath |
|---|---|
| The directory path to be created. | <Optional> A boolean value. If set to TRUE a multiple levels may be created. |
A boolean value.
declare function RTI_OS_Directory // Create a new directory called mydir in c:\revsoft. directory = "c:\revsoft\mydir" result = RTI_OS_Directory( "CREATE", directory) |
declare function RTI_OS_Directory $Insert Logical // create the full directory structure c:\revsoft\newdir\mydir declare function rti_os_directory directory = "c:\revsoft\newdir\mydir" createPath = TRUE$ result = RTI_OS_Directory( "CREATE", directory, createPath) |