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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 4880 views
  • 6 likes
  • 1 in conversation