Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Return Value

A boolean value.

Example

 

Code Block
declare function RTI_OS_Directory
 
// Create a new directory called mydir in c:\revsoft.
directory = "c:\revsoft\mydir"
result = RTI_OS_Directory( "CREATE", directory)

...

Example 2

...

Code Block
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)