21%macro mp_wait4file(file, maxwait=0, interval=1);
23%
if %str(&file)=%str() %then %
do;
24 %put %str(ERR)OR: file not provided;
29 if maxwait=0 then maxwait=60*60*24*46;
30 do until (fileexist(
"&file") or slept>maxwait );
31 slept=sum(slept,sleep(&interval,1));