BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
miss2223
Fluorite | Level 6

Hi 

 

filename DIRLIST pipe 'dir "C:\Documents and Settings" /b';

data dirlist ;infile dirlist lrecl=200 truncover;
input file_name $100.

run ;

 

Is there any way SAS can generate an email when directory path/file is not available/file is locked. So the email brings the attention to be resolve?

 

In data step please. 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Use a data step:

data _null_;
length dref $8;
rc = filename(dref,"C:\Documents and Settings");
did = dopen(dref);
if did
then do;
  call symputx("dir_open","1");
  rc = dclose(did);
end;
else call symputx("dir_open","0");
rc = filename(dref);
run;

Macro variable dir_open can be used as a boolean value to make the decision of either continuing or sending the mail.

View solution in original post

1 REPLY 1
Kurt_Bremser
Super User

Use a data step:

data _null_;
length dref $8;
rc = filename(dref,"C:\Documents and Settings");
did = dopen(dref);
if did
then do;
  call symputx("dir_open","1");
  rc = dclose(did);
end;
else call symputx("dir_open","0");
rc = filename(dref);
run;

Macro variable dir_open can be used as a boolean value to make the decision of either continuing or sending the mail.

SAS Innovate 2025: Call for Content

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 282 views
  • 0 likes
  • 2 in conversation