04.IT Knowledge/SAS
현재 세션에서 작업중인 work의 경로 알아내기
아주 오래된 미래
2008. 12. 31. 16:02
%macro tttt;
data _null_;
aa=pathname("work");
put aa=;
run;
%mend tttt;
%tttt;
data _null_;
aa=pathname("work");
put aa=;
run;
%mend tttt;
%tttt;