使用宏变量读取 SAS 9.4 中的文件夹内容

using macro variable to read folder content in SAS 9.4

我正在尝试使用 SAS 宏获取目录中的文件列表,该宏使用宏变量动态指定文件夹名称。我运行的代码如下:

%macro veicolo(codice_veicolo);

filename pipedir pipe ' dir "some_path\&codice_veicolo" /S' lrecl=5000; 

data &codice_veicolo;
 infile pipedir truncover;
 input line $char1000.;
 length directory 00;
 retain directory;
 if line =' ' or
 index(upcase(line),'<DIR>') or
 left(upcase(line))=:'VOLUME' then
 delete;
 if left(upcase(line))=:'DIRECTORY OF' then
 directory=left(substr(line,index(upcase(line),'DIRECTORY OF')+12));
 if left(upcase(line))=:'DIRECTORY OF' then
 delete;
 if input(substr(line,1,10),?? mmddyy10.) = . then
 substr(line,1,10)='12/31/2999';
 date=input(substr(line,1,10),?? mmddyy10.);
 format date mmddyy10.;
run;

proc sort data=&codice_veicolo;
 by directory descending date;
run;

data folder_&codice_veicolo(drop=i line);
 set &codice_veicolo;
 by directory;
 length filename ;
 retain number_of_files_in_directory directory_size;
 if first.directory then
 do;
 number_of_files_in_directory=input(scan(line,2,' '),32.);
 call symput(nfiles,number_of_files_in_directory);
 directory_size=input(scan(line,4,' '),comma32.);
 end;
 file_size=input(scan(line,3,' '),comma32.);
 filename=' ';
 do i=4 to 100;
 filename=trim(left(filename))||' '||scan(line,i,' ');
 if scan(line,i,' ')=' ' then
 leave;
 end;
 if index(upcase(line),'FILE(S)') then
 delete;
 if date ge '30DEC2999'd then
 delete;


run;  


%mend;

然后当我以参数 codice_veicolo 作为我要在其中搜索的文件夹的名称执行宏时,出现以下错误:

Output Err std:
The system cannot find the path specified.
NOTE: 20 records were read from the infile PIPEDIR.
      The minimum record length was 0.
      The maximum record length was 90.
NOTE: The data set WORK.JL6AME1A6FK000442 has 2 observations and 3 variables.
NOTE: DATA statement used (Total process time):
      real time           0.05 seconds
      cpu time            0.01 seconds

我认为由于某种原因它无法解析宏变量,但是如果我 运行:

%let pgmpath = %sysfunc(pathname(pipedir));
%put &pgmpath;

我得到了正确的路径和正确的目录,因此我认为问题出在 infile 语句中。代码 运行 在不使用宏变量的情况下很好。

我在 Windows 8 上使用 SAS 9.4。有什么想法吗??

提前谢谢你:) 卢卡

宏变量引用没有在单引号内展开。 试试这个。

filename pipedir pipe %sysfunc(quote(dir /s "some_path\&codice_veicolo")) lrecl=5000;