Code: Select all
IfFileExists>DirC1 ( Need to add a "OR IF>Correlat=1" )
GoTo>MoveFile
Else
GoTo>CompareFile
Endif
Moderators: JRL, Dorian (MJT support)
Code: Select all
IfFileExists>DirC1 ( Need to add a "OR IF>Correlat=1" )
GoTo>MoveFile
Else
GoTo>CompareFile
Endif
Code: Select all
Let>myFileExists=0
IfFileExists>DirC1
Let>myFileExists=1
Endif
If>{(%myFileExists%=1) OR (%Correlat%=1)}
GoTo>MoveFile
Else
GoTo>CompareFile
Endif