You can use the operating system command to copy the files. Since you have SAS available it can be used to generate the commands for you, but you could use any programming language.
Assume that want tom copy all files with extension .sas from one folder to another folder then you might use code like this.
%let indir=c:\saspgms ;
%let outdir= c:\txtpgms;
data _null_;
length infile outfile $256 extension $20 cmd $500 ;
infile "&indir\*.sas /b" pipe truncover ;
input infile $256. ;
extension = scan(infile,-1,'.');
if upcase(extension)='SAS';
outfile=cats(tranwrd(substr(infile,1,length(infile)-3),"&indir\","&outdir\"),'txt');
cmd=catx(' ','copy',quote(trim(infile)),quote(trim(outfile));
infile copy pipe filevar=cmd ;
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.