BookmarkSubscribeRSS Feed
🔒 This topic is locked. We are no longer accepting replies to this topic. Need further help? Please sign in and ask a new question.
ChrisNZ
Tourmaline | Level 20

 

Since the implicit path "." cannot be used to reference the current working directory for batch grid jobs, this short macro comes to the rescue.

 

 

%macro wd;
  %local cwd pwd;
  %let cwd = %sysget(LS_SUBCWD);
  %let pwd = %sysget(PWD);

  %if %length(%superq(cwd)) %then %superq(cwd);
  %else                           %superq(pwd);
%mend wd;

The path can then be used anywhere; for example:

 

libname PWD "%wd";

 

Check the documentation for more information on the macro function %sysget


Thank you to @dgritt for providing the original code and agreeing to his contribution being published here.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Visit a random SAS tip This SAS Tips board is not open for replies or comments, but we welcome your feedback and questions. Have a question or comment about this tip? Start a new topic in one of our discussion boards, and reference this tip topic.
Discussion stats
  • 0 replies
  • 4464 views
  • 6 likes
  • 1 in conversation