How to automate and import files that are located in date sequential folders into SAS?

流过昼夜 提交于 2019-12-31 04:12:08

问题


I currently have 700 folders that are all sequentially named.

The naming convention of the folders are as follows:-

2011-08-15_2011-08-15    
2011-08-16_2011-08-16
2011-08-17_2011-08-17
...
2013-09-20_2013-09-20

There are 10 txt files within each folder that have the same naming convention.

With the txt files all being the same, what I am trying to achieve is to automate the infile and then use the name of the folder, eg 2011-08-15_2011-08-15 or part of eg. 2011-08-15 to then be the name of the created data set.

I can successfully import all the txt files so there is no issue there, the issue is i don't want to be changing the folder name each time in the infile step.

'C:\SAS data\Extract\2011-08-17_2011-08-17\abc.txt'

Is there an easier way to read these files in? I can find code for sequential txt/csv files but can find nothing to reference a folder and then rename the data set.


回答1:


You should be able to wildcard the folders/files into a single fileref, e.g.

filename allfiles "c:\SAS_data\extract\*\*.txt" ;

data alldata ;
  length fn _fn $256. ;
  infile allfiles lrecl=256 truncover filename=_fn ;
  fn = _fn ; /* Store the filename */
  input ;
  put _INFILE_ ;
run ;

The wildcard folder & file works in SAS Unix, not sure about SAS PC.



来源:https://stackoverflow.com/questions/22190575/how-to-automate-and-import-files-that-are-located-in-date-sequential-folders-int

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!