BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Doug____
Pyrite | Level 9

How do I obtain the full path of a SAS program on a Unix-based system (SAS 9.4 TM1S1) automatically?

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

What program?  The program that is currently runnin? How did you submit the program to run?  If you submitted it from the command line then use the value of the SYSIN option. 

 

%let path = %sysfunc(getoption(sysin));

If the file doesn't exist then you might try adding .sas to the end of the value to see if it does.

%if ^%sysfunc(fileexist(&path)) %then %let path = &path..sas;

If you want the FULL path then make a filename and using the PATHNAME() function to get the real filename.

  %let rc = %sysfunc(filename(fileref,&path));
  %let path = %sysfunc(pathname(&fileref));
  %let rc = %sysfunc(filename(fileref));

View solution in original post

3 REPLIES 3
Astounding
PROC Star

As long as you're talking about a batch job, it's straightforward to capture the name as a macro variable:

 

%let path = %sysfunc(getoption(sysin));

 

Once you get into interactive use, you have to consider what you're asking for ... last program brought into the current Program Editor window?

Tom
Super User Tom
Super User

What program?  The program that is currently runnin? How did you submit the program to run?  If you submitted it from the command line then use the value of the SYSIN option. 

 

%let path = %sysfunc(getoption(sysin));

If the file doesn't exist then you might try adding .sas to the end of the value to see if it does.

%if ^%sysfunc(fileexist(&path)) %then %let path = &path..sas;

If you want the FULL path then make a filename and using the PATHNAME() function to get the real filename.

  %let rc = %sysfunc(filename(fileref,&path));
  %let path = %sysfunc(pathname(&fileref));
  %let rc = %sysfunc(filename(fileref));
Doug____
Pyrite | Level 9

The option suggested only renders the word "path" on a remote sumission. Are there other options?

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2928 views
  • 0 likes
  • 3 in conversation