BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
texasmfp
Lapis Lazuli | Level 10

Each month I create roughly 200 Excel files, 100 files are the old school "XLS" Excel files, then those files are turned into new "XLSX" files.

So there are two files with identical names, but with different extensions.  I want to delete all of the "XLS" files but not the "XLSX" files.   Each month the file names are different.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Oligolas
Barite | Level 11

Hi,

if you do not need to double check if the *.xlsx exists before deleting the *.xls you could simply use the x command:

x "del ""YourPath\*.xls""";
________________________

- Cheers -

View solution in original post

4 REPLIES 4
Oligolas
Barite | Level 11

Hi,

if you do not need to double check if the *.xlsx exists before deleting the *.xls you could simply use the x command:

x "del ""YourPath\*.xls""";
________________________

- Cheers -

texasmfp
Lapis Lazuli | Level 10

That works with some modifications to my program.  Thanks

Ksharp
Super User
%let path= c:\temp\a  ;


data _null_;
rc=filename('x',"&path.");
did=dopen('x');
do i=1 to dnum(did);
  fname=dread(did,i);
  if upcase(scan(fname,-1,'.'))='XLS' then do;
    rc=filename('y',cats("&path.\",fname));
	rc=fdelete('y');
  end;
end;
did=dclose(did);
run;
texasmfp
Lapis Lazuli | Level 10

Thanks, that works as well

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1199 views
  • 1 like
  • 3 in conversation