Hi There,
I have a SAS program that is generating a csv report file and writing it to one of the work directory on server. I want the created file to be copied or moved over to another directory on server. For this I added following lines of code to my existing code but it errors out with error message saying "Shell escape is not valid in this SAS session".
%let dir1="%sysfunc(pathname(work))/FileName..csv";
%let dir2="//FileServerName/Dir1/XYZ/Reports/";
%sysexec move "&dir1" "&dir2";
Any other work around/ suggestions are most welcome.
Thanks in advance.
FCOPY and/or PROC DOWNLOAD.
Yes, it's common for server side installations to restrict access to the OS, and using OS commands, which is your current approach.
FCOPY uses SAS built in tools.
But if your SAS has access to the directory, you should be able to export directly to there in the first place?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.