How do I obtain the full path of a SAS program on a Unix-based system (SAS 9.4 TM1S1) automatically?
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));
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?
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));
The option suggested only renders the word "path" on a remote sumission. Are there other options?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.