After a long search I found out that the fix was provided in one of the earlier versions but then lost. This a regression bug. I can suggest the following simple workaround. In place of @V"files" with a file mask, if it is in a script job use the following Dim myfile, string Dim myfile2, string Dim temp, string DirEx "c:\\source_dir\\*.pdf", myfile FileSplitName myfile, temp, myfile2 Concat "c:\\target_dir\\", myfile2, myfile2 FileMove myfile, myfile2 Set the job not to move or rename the file automatically as it will be done through the script. The myfile2 variable will hold the full name of the file after it is moved out of the source directory. : That would be helpfull, thanks
|