Hi everybody,
I got this code
filename fnames pipe "dir /ds/data star/* /b";
data fnames;
infile fnames pad missover;
input @1 filename $255.;
run;
It reads all the files in the directory and create a dataset with one record for each file in the directory.
The problem is the blank in the middle of the name of the directory, data star.
If I remove this blank (and put datastar instead of data star, for example) is OK.
With it, it reads a not correct path, /ds/data.
I can't remove the blank in the directory name so could I do to obtain the correct path?
Thanks