BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Arjumand
Calcite | Level 5

Hi,

 

I need the code to check whether the directory is empty in sas macro.

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisBrooks
Ammonite | Level 13

This should work

 

%macro isemptyfolder(folder);

	%let filrf=mydir;
	%let rc=%sysfunc(filename(filrf, "&folder"));
	%let did=%sysfunc(dopen(&filrf));
	%let memcount=%sysfunc(dnum(&did));
	%let rc=%sysfunc(dclose(&did));
	%put 'number of members in folder ' &folder ' = ' &memcount;

%mend isemptyfolder;

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Please note this is a Q&A board, not a contract work request system.  If you have a question, provide what you have done, show example code using the {i}.  If you have access to the command line then doing a filename tmp pipe 'dir c:\test /b'; and using that in a datastep then checking that might work.  Not sure what the benefit of checking for an empty directory is though, doesn't really add anything.  Do you want to check existence of the folder, or maybe a file you don't want to overwrite?

 

Arjumand
Calcite | Level 5
Hi @RW9: Thanks for your reply. Just for the info, I am not actually doing any project but making myself more familiar with macro programming. I was actually writing a UNIX shell script which had certain validations and thought for the same in SAS.
ChrisBrooks
Ammonite | Level 13

This should work

 

%macro isemptyfolder(folder);

	%let filrf=mydir;
	%let rc=%sysfunc(filename(filrf, "&folder"));
	%let did=%sysfunc(dopen(&filrf));
	%let memcount=%sysfunc(dnum(&did));
	%let rc=%sysfunc(dclose(&did));
	%put 'number of members in folder ' &folder ' = ' &memcount;

%mend isemptyfolder;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 3 replies
  • 3284 views
  • 3 likes
  • 3 in conversation