In sas code I need to create tar.gz file, and add to this file other external files such as csv, txt, zip. How can I do this?
See this post about GZ support in the SAS FILENAME statement.
Example:
filename source "C:\Logs\SEGuide_log.10168.txt";
filename tozip ZIP "C:\Logs\SEGuide_log.10168.txt.gz" GZIP;
data _null_;
infile source;
file tozip ;
input;
put _infile_ ;
run;
Result:
To make a tar file you will probably need third party software. If you need to create a single file with multiple members you should try creating a ZIP file instead.
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.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.