The code below makes a folder with an ISOdate.
1 2 3 4 5 6 7 |
%let ISOdt = %sysfunc(datetime(), B8601DT.); data _null_; rc = system("mkdir c:\test\&ISOdt."); put rc=; run; |
The code below makes a folder with an ISOdate.
1 2 3 4 5 6 7 |
%let ISOdt = %sysfunc(datetime(), B8601DT.); data _null_; rc = system("mkdir c:\test\&ISOdt."); put rc=; run; |