Hi there,
My task is to list out all files in my current directory which has about 3 sub directories . As we have EG , all pipe commands are disabled but I am able to list out all file names in a dataset by using following code but however I am unable to tweak it for all sub folders as these 3 subdirectories also have 4 folders each. Basically its Q1, Q2 and Q3 and then Q1 consists of folders of January, February and so on .... Need help in modifying this code to take care of all folders....or else if any alternative is there without pipes..plz let me know
_' );
filename _folder_ "%bquote(\\jafiles01\SAS Folder\)";
data filenames(keep=memname);
handle=dopen( '_folder
if handle > 0 then do;
count=dnum(handle);
do i=1 to count;
memname=dread(handle,i);
output filenames;
end;
end;
rc=dclose(handle);
run;
filename _folder_ clear;
You might want to check this out as well:
Thanks SASKiwi for the link but it still does the same thing. It reads out files from same folder and not the subfolders....
What OS are you using?
I am using Windows with SAS Enterprise Guide 4.3
Is the server you are connecting to through EG also Windows?
Take a look at Jason Secosky's excellent paper "User-Written DATA Step Functions." Specifically, look at the "directory traversal example." I would include a link but copy/paste doesn't work for me in this forum.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.