|
Try the V6.07 view SASHELP.VSLIB.
PROC PRINT DATA=SASHELP.VSLIB;
VAR LIBNAME PATH;
WHERE LIBNAME EQ 'aa';
RUN;
Of course, you could use the view in a data step rather than a proc. Or you
could use the underlying dictionary table, DICTIONARY.MEMBERS. I am more
familiar with the views--I have not used the tables.
> ----------
> From: Eden Don[SMTP:edendon@SOIM.NET]
> Reply To: Eden Don
> Sent: Friday, November 19, 1999 3:31 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: How to find out the physical path in my program?
>
> Dear SAS-Lers,
>
> Could anybody show me the way to find out the physical path according to
> a given libname in my program. Say, I have
> libname aa '/home/opt/';
>
> And now I only have the libname **aa**, how can know the physical path
> in the system, which is actually **/home/opt**. Are there any functions
> to do it from SI?
>
> TIA
>
|