Date: Fri, 8 Aug 2003 17:41:04 +0300
Reply-To: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Subject: Re: help on fileref()/fexist()....
"ben" wrote
> is other way to do it?
%macro m;
%if %sysfunc( fileexist ("c:\temp\freespace.log") ) %then %do;
Data _null_;do x=1 to 10;output;end;run; *data and proc steps...;
%end;
%mend;
%m;
|