SASUnit Examples
Version 1.3.0
Main Page
Modules
Files
File List
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
saspgm
sasunit
windows
_mkdir.sas
Generated on Fri Mar 21 2014 11:40:08 for SASUnit Examples by
1.8.4