OS/2 Procedures Language 2/REXX


Inf-HTML [About][Toc][Index] 0.9b (c) 1995 Peter Childs


SysMkDir

 
 Function: SysMkDir 
 Syntax:   rc = SysMkDir(dirspec) 
      dirspec   The directory that should be created. 
 Purpose:  Creates a specified directory quickly.  In case of failure, one 
           of many return codes is given so that the exact reason for 
           failure can be determined. 
 RC:       Return Codes 
      0         Directory creation was successful. 
      2         Error.  File not found. 
      3         Error.  Path not found. 
      5         Error.  Access denied. 
      26        Error.  Not a DOS disk. 
      87        Error.  Invalid parameter. 
      108       Error.  Drive locked. 
      206       Error.  Filename exceeds range. 
 Example:  call SysMkDir 'c:\rexx' 
   

Inf-HTML End Run - Successful