I'm trying to decompress a file in the zip format using pure SAS code, that I can integrate as one of the steps of a SAS script. I'm running SAS via the web version of SAS Studio on the cloud hosted version (SSOD).
Reading the documentation, I was able to come up with this, which attempts to expand all files in the zip to the same directory:
data _null_;
infile "unzip /project/input/file.zip" pipe ;
input ;
put _infile_;
run;
But I couldn't find how to tell it a specific directory to write the files, and I couldn't find how I extract a specific file from the zip file.