LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (November 1999, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 19 Nov 1999 16:48:11 -0800
Reply-To:   "Berryhill, Tim" <TWB2@PGE.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Berryhill, Tim" <TWB2@PGE.COM>
Subject:   Re: How to find out the physical path in my program?
Comments:   To: Eden Don <edendon@SOIM.NET>, sas-l <sas-l@uga.cc.uga.edu>
Content-Type:   text/plain

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 >


Back to: Top of message | Previous page | Main SAS-L page