SASUnit Examples  Version 1.3.0
windows/_mkdir.sas
Go to the documentation of this file.
1 
23 %macro _mkdir (dir
24  );
25 
26  %local xwait xsync xmin;
27  %let xwait=%sysfunc(getoption(xwait));
28  %let xsync=%sysfunc(getoption(xsync));
29  %let xmin =%sysfunc(getoption(xmin));
30 
31  options noxwait xsync xmin;
32 
33  %SYSEXEC(md "&dir");
34 
35  options &xwait &xsync &xmin;
36 
37 %mend _mkdir;
38