Copying files
Posted: Fri Mar 05, 2021 3:24 am
I'm having an issue with RevCopyFile, Im not quite sure what im doing wrong but I bet its something stupid
This Works:
This does not:
This Works:
Code: Select all
--copy nc1 files
repeat for each line tLine in tPartList
put ".nc1" after tLine
revCopyFile "\\10.0.15.15\NC Files\" & tLine, "C:\NC Files\"
end repeat
Code: Select all
--copy nc1 files
set the defaultfolder to "\\10.0.15.15\NC Files\"
repeat for each line tLine in tPartList
put ".nc1" after tLine
revCopyFile tLine, "C:\NC Files\"
end repeat