I have SAS code that takes multiple Excel tabs and exports each of them into the same directory as .csv files. Using PROC IMPORT each of these csv files are used to create individual SAS datasets via SAS EG.
My question: Once my SAS datasets are created I have no need for these csv files. How would I code my program to delete these csv files?
Thanks.
Jack
So I understand correct, the Excel file is converted to CSV, then imported to SAS. Now you want to delete the CSV files?
I'm assuming you're using x commands at some point so you could use
X 'RM path_to_file.csv;
To answer your original question:
So I understand correct, the Excel file is converted to CSV, then imported to SAS. Now you want to delete the CSV files?
Yes, that is correct.
But I have 12 csv files to delete (in a future run, I will a lot more). How can I efficeintly code this? I have 12 csv files that are named by month of the year (Jan, Feb, etc.).
Thanks
Assuming you're on Windows you can use a wildcard in your command.
Find the appropriate system command to remove all files that end with .CSV
X "rm folder/*.csv"
Great, thanks for quick reply...
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.