Hi there. I am trying to create a folder for my output reports and I have tried all of these options: %put NOTE: creating folder (%sysfunc(dcreate(Reports, ParentDir)));
%put NOTE: creating folder (%sysfunc(dcreate('Reports', 'ParentDir')));
%put NOTE: creating folder (%sysfunc(dcreate("Reports", "ParentDir")));A At least, one of them should be correct but in all of the cases, the output is the same: NOTE: creating folder () No output directory, no errors, no nothing. Just a blank string (and of course, the folder has not been created). I am working in a pretty restricted environment (SAS 9.3) and I can't use either shell escape commands (like X or SysExec). Probably my problem is due to some other admin restriction but: no output at all? nothing? not an error or a warning? Any clue? Thanks in advance!
... View more