|
The code I am using to pull the files in is:
data test;
Infile 'C:\abc.csv' DLM = ','
Lrecl = 32000 DSD Truncover;
Input
VarA VarB VarC Juldate;
run;
/* After this I run some code on it. For example */
data test ; set test:
n = _N_ ;
run;
/* and so forth */
Indeed, I can have one composite file of all the files that I have read in.
All of the variables in all the files are the same. If I do a set I shall
have to type in 1500 file names. Is there a short way to do this?
Any help will be greatly appreciated.
|