Hello Everyone,
I need to read external xlsx file into SAS, and then put the processed xlsx file into an archive zip file. Previously, we do this using X command, but this option is not available now. Is there any other ways to put xlsx file into zip file without using X command and requiring XCMD privileges?
Thanks a lot for answering my question.
Did you try using the FCOPY() function?
filename xfile "&path/class.xlsx" recfm=n;
filename zfile zip "&path/example.zip" member="class.xlsx" recfm=n;
data _null_;
rc=fcopy('xfile','zfile');
put rc=;
run;
Did you try using the FCOPY() function?
filename xfile "&path/class.xlsx" recfm=n;
filename zfile zip "&path/example.zip" member="class.xlsx" recfm=n;
data _null_;
rc=fcopy('xfile','zfile');
put rc=;
run;
Add files to a ZIP archive with FILENAME ZIP
By Chris Hemedinger on The SAS Dummy March 4, 2016
https://blogs.sas.com/content/sasdummy/2016/03/04/add-files-to-a-zip-archive-with-filename-zip/
BR,
Koen
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.