得到指定Library里的数据集列表
可以导出至新的数据集或指定txt文件
- %macro GetDataSetInfoInLib(LibName,Filter,TargetTable,OutFilePath,Detail);
- /**********************************************************************/
- /* 此宏用于获得目标逻辑库下所有数据集的信息,并将此信息保存至SAS表格 */
- /* 或导出至txt文件中。其中,LibName是指定的逻辑库;Filter是数据集过滤 */
- /* 设置,支持_和%通配符,若需要导出所有数据集列表,可以设置为空; */
- /* TargetTable是保存数据集信息的SAS表格,若不需要生成,可以设为空; */
- /* OutFilePath是导出txt文件的路径,若不需要导出,可以设为空;Detail是 */
- /* 标记变量,=Yes表示导出数据集列表详情,否则=No。 */
- /* */
- /* 最终得到的是含有目标逻辑库下所有数据集信息的SAS表格和存于指定路径 */
- /* 的txt文件。 */
- /* */
- /* Created on 2013.2.23 */
- /* Modified on 2013.4.3 */
- /**********************************************************************/
- /* 检查TargetTable和OutFilePath的非同时为空性 */
- %if &TargetTable EQ %STR() AND &OutFilePath EQ %STR() %then %do;
- %put ERROR: The TargetTable and OutFilePath should not be blank simultaneously, please check it again.;
- %goto exit;
- %end;
- %if &TargetTable EQ %STR() %then %let TargetTable=GDSIIL_Temp;
- /* 检查OutFilePath的合法性,若后缀不存在或非TXT,则改为TXT */
- %if &OutFilePath NE %STR() %then %do;
- %if %SYSFUNC(FIND(&OutFilePath,%STR(.))) EQ 0 %then %do;
- %let OutFilePath=%SYSFUNC(CATS(&OutFilePath,%STR(.TXT)));
- %end;
- %else %if %SYSFUNC(FIND(&OutFilePath,%STR(.))) NE 0 AND %UPCASE(%SCAN(&OutFilePath,-1,%STR(.))) NE TXT %then %do;
- %let OutFilePath=%SYSFUNC(CATS(%SUBSTR(&OutFilePath,1,%LENGTH(&OutFilePath)-%LENGTH(%SCAN(&OutFilePath,-1,%STR(.)))),TXT));
- %end;
- %end;
- /* 检查输入路径下是否存在同名文件,若存在则删除 */
- %if &OutFilePath NE %STR() %then %do;
- %ChkFile(&OutFilePath);
- %end;
- /* 检查Detail的合法性 */
- %if &Detail EQ %STR() %then %let Detail=No;
- %if %UPCASE(&Detail) NE YES AND %UPCASE(&Detail) NE NO %then %do;
- %put ERROR: The Detail should be Yes or No, case insensitive and without quotes.;
- %goto exit;
- %end;
- /* 开始进行计算 */
- proc sql noprint;
- create table &TargetTable as
- select * from SASHELP.VTABLE
- where libname EQ UPCASE("&LibName.")
- %if %UPCASE(&Filter) NE %STR() %then %do;
- and memname like UPCASE("&Filter.");
- %end;
- %else %do;
- ;
- %end;
- quit;
- %if %UPCASE(&Detail) EQ NO %then %do;
- data &TargetTable;
- set &TargetTable(keep=libname memname);
- run;
- %end;
- %if &OutFilePath NE %STR() %then %do;
- %ExportToDelimitedFile(SourceTable=&TargetTable,
- Delimiter='09'x,
- PutNames=Yes,
- OutFilePath=&OutFilePath);
- %end;
- /* 如需要在SAS的Output窗口中打印文件列表,请取消如下注释 */
- /*proc print data=&TargetTable;*/
- /*title1 "Files identified through saved file";*/
- /*run;*/
- /* 删除不必要的表格 */
- proc datasets lib=work nolist;
- delete GDSIIL_:;
- quit;
- %exit:
- %mend;
- %macro Demo();
- %let LibName=Zheng;
- %let Filter=r%; /* 文件过滤设置,若需要导出所有文件列表,则设置为空即可,即Filter=; */
- %let TargetTable=FileList; /* 若不需要生成包含文件列表的SAS表格,则设为空,大小写不敏感 */
- %let OutFilePath=d:\Temp\abc.txt; /* 若不需要导出文件列表txt文件,则设为空,大小写不敏感 */
- %let Detail=Yes; /* =Yes表示在导出文件列表txt文件中包含InDirPath的详情,否则=No,大小写不敏感 */
- %GetDataSetInfoInLib(&LibName,&Filter,&TargetTable,&OutFilePath,&Detail);
- %mend;