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