Copy File() - network dest doesn't work
Any reason why the below example won't work? I get zero for the return, which means the file didn't copy and I can see that it didn't copy. I can manually copy it fine via Windows 10.
Question: does JSL File Copy() not like UNC (I think) network destinations perhaps?
Copy File(
"\\mywork1.work.com\folder1\source\test1.csv",
"\\mywork2.work.com\folder2\dest\test1.csv"
);
File Cop...