Hi: I'm not sure I understand your question. However, the concept you describe "moving proc contents into created Libname folder" indicates that you might not be clear that PROC CONTENTS is showing you information about either all the datasets in a SAS library (defined with a LIBNAME statement) or PROC CONTENTS is showing you information about just 1 dataset in a SAS library (defined with a LIBNAME statement). PROC CONTENTS can point to a library location, but you don't really "move" proc contents into a libname folder. For example, in the Programming 1 class, your data (if you follow the instructions) should be in a class folder labelled EPG1V2 and then the data is in a subfolder named data. So, for example, these are various LIBNAME statements pointing to physical folder locations on different operating systems: libname PG1 'c:\SAS_Class\EPG1V2\data'; libname PG1 '/home/u12345678/EPG1V2/data'; libname PG1 '/usr/bin/sasczz/EPG1V2/data'; libname PG1 's:\workshop\EPG1V2\data'; Then given any of those LIBNAME statements, I could do this: proc contents data=PG1._all_ nods; run; OR proc contents data=PG1.np_summary; run; In one of the first practices in the class, we ask you to use PROC CONTENTS on the storm_summary.sas7bdat file in the class data folder because we want students to understand that they CAN use a physical folder location with PROC CONTENTS. That practice is meant to run like this: proc contents data='<your path to main folder>/EPG1V2/data/storm_summary.sas7bdat'; run; So if you were running on SAS OnDemand for Academics, for example, that code, with the full file path, would be something like: proc contents data='/home/u12345678/EPG1V2/data/storm_summary.sas7bdat'; run; Then later in the class, we show you how to use a LIBNAME statement to point to the data subfolder for class so that you do not have to use the full physical path in the DATA= option.
We also show you in the Programming 1 class, how to use the XLSX Libname engine to see what tables (sheets) are in an Excel workbook. But, none of these examples would be considered moving PROC CONTENTS into a created Libname folder. So if you can provide some more background or clarify your question, then perhaps we can provide more commentary. Cynthia
... View more