The code below makes a folder with an ISOdate.
%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.
%let ISOdt = %sysfunc(datetime(), B8601DT.); data _null_; rc = system("mkdir c:\test\&ISOdt."); put rc=; run;