convenient method to check if a file not exist.
i.e:
this form
To
IfFileExists WhichFile DoSomething skip
DoSomething:
;codes here
Skip:
IfFilesNotExists WhichFile Skip
;codes here
Skip:
3 posts
To
IfFileExists WhichFile DoSomething skip
DoSomething:
;codes here
Skip:
IfFilesNotExists WhichFile Skip
;codes here
Skip:
does the job. No label needed if script can continue from IfFileExists. This behavior can also be triggered by replacing the 0 by "".IfFileExists "File" 0 Skip
;codes here
Skip;