IfNotDirExists


 

IfNotDirExists>directory_name[,label_name[,false_label_name]]

 statements  

[ [Else

 else statements]

Endif ]

 

If directory_name does not exist the first statements are executed.  Otherwise the else statements are executed.

 

When label names are provided execution jumps to the specified label if the directory specified in directory_name does not exist. If a second false label is specified, execution will jump to that label if the expression resolves false (directory does exist).  Subroutine names can also be specified.  When specifying a subroutine name execution will jump to that subroutine and return when the subroutine has completed.  If label names are specified Else and Endif are ignored and are unnecessary.

 

 

See also: IfDirExists, Label, Goto, IfWindowOpen, IfFileChanged, If, IfFileExists, Subroutines

 

Example

 

IfNotDirExists>c:\myfolder\temp

  CreateDir>c:\myfolder\temp

Endif