Hi,
I have a folder with two levels. The first level has 20 second level folders. I have sasfiles in each of the second level and will like to create a single libname for them. How do I do that?
For example:
First level folder : /_U/N/RC/Proj/SAS
Second level folder : /_U/N/RC/Proj/SAS/data1/a.sas7bdat
/_U/N/RC/Proj/SAS/data2/b.sas7bdat
/_U/N/RC/Proj/SAS/data3/c.sas7bdat
/_U/N/RC/Proj/SAS/data4/d.sas7bdat
When I write a libname to reference all the second level files using the
libname x "/_U/N/RC/Proj/SAS"; run;
its not working and I do not want to go through the pain of writing 20 libnames and putting all the libref in another single libname or is that what I have to do?