I have many folders. In each of them, there are a number of files. Is there a quick way to get all file names automatically? For example, for the attached figure, I hope to get names, such as ABB006.dat, ABB0012.data, etc.
Thank you.
How about this?
filename flist pipe 'dir C:\Temp /a-d/b/s'; /* please enter your parent folder */
data fnames;
length fname $400; /* please adapt the length up/down as necessary/convenient */
infile flist;
input;
fname=scan(_infile_,-1,'\');
run;
How about this?
filename flist pipe 'dir C:\Temp /a-d/b/s'; /* please enter your parent folder */
data fnames;
length fname $400; /* please adapt the length up/down as necessary/convenient */
infile flist;
input;
fname=scan(_infile_,-1,'\');
run;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.