Hi guys,
I have a zip file with nested folders inside the zip file.
This is what I have managed to get so far. But for every zip file, the folder name highlighted in green is changing (do not have a fixed name).
FILENAME ziplib zip "&path.\&yyyymm.\Download_20210913164726.zip";
FILENAME readfile "%sysfunc(getoption(work))\TEST123.TXT";
data _null_;
infile ziplib("PRDMobius\BPS007R\20210903053521\TEST123.TXT");
file readfile ;
input;
put _infile_;
run;
What I would want is wildcard on the folder name as per below but clearly this isn't working. Anyone can help me with this? I have zero idea....
FILENAME ziplib zip "&path.\&yyyymm.\Download_20210913164726.zip";
FILENAME readfile "%sysfunc(getoption(work))\TEST123.TXT";
data _null_;
infile ziplib("PRDMobius\BPS007R\*\TEST123.TXT");
file readfile ;
input;
put _infile_;
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.