Is there a flag or an option to have the ODS create folders.
I have a routine that creates dozens of reports most of which need to be in a separate folder/directory.
I have created the top level folders "Distribute\All Users" but there could be a large number of sub-folders(\User1.....\User23). And the number of users is not know until the routine is executed.
\All Users
\User1
\User2
\User3
\User4
\User5
ODS PDF FILE='W:\Distribute\All Users\User5\User5 Report.pdf' STYLE=prpdf BOOKMARKLIST=NO;
How are you creating the top level folder? The routine can create folders using DCREATE?
How are you creating the top level folder? The routine can create folders using DCREATE?
Yes, that does work.
Data _Null_;
newdir=dcreate('User1','W:\Distribute\All Users\');
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.