SASUnit Examples  Version 1.5.0
_delfile.sas
Go to the documentation of this file.
1 
24 %MACRO _delFile(i_file
25  );
26 
27  %LOCAL rc filrf;
28  %LET filrf=_tmpf;
29  %LET rc=%sysfunc(filename(filrf,&i_file));
30  %LET rc=%sysfunc(fdelete(_tmpf));
31  &rc
32  %LET rc=%sysfunc(filename(filrf));
33 %MEND _delFile;