@Patrick Thank you for the insights. To clarify, Target output location is in network drive.
Two quick questions.
a) Were you able to show me how this can be achieved via SAS program, "As long as option XCMD is set you can do something similar in a Unix/Linux environment. I'd be using rsync in place of xcopy" ?
b) Can I understand that the following infile statement will work if I change the target path from C:\ to network drive? Is %tslit inbuild SAS macro? What is the meaning of /F/Y here?
infile %tslit(xcopy "&work_path\*.xlsx" "c:\temp" /F/Y) pipe truncover end=done;
... View more