BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
djbateman
Lapis Lazuli | Level 10

I am trying to get a list of files in a specified directory, but I have noticed that when using the command prompt syntax that I cannot use directories that contain a space.  Does anyone know of a way to get my code to work with spaces?  The code should return about 300 files, but I'm getting 0.

 

%let dir=S:\cdm\Programming\445\106\Data Cleaning\MDR\MDR Standard Checks\Part B\AE;
%let ext=xlsx;

filename EXTlist pipe "dir /b /s &dir.\*.&ext.";

data directory;
	infile EXTlist truncover;
	input directory $200.;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Better in my opinion to leave the macro variable unquoted, and quote when used.

%let dir=S:\cdm\Programming\445\106\Data Cleaning\MDR\MDR Standard Checks\Part B\AE;
%let ext=xlsx;

filename EXTlist pipe "dir /b /s ""&dir.\*.&ext"" ";

data directory;
	infile EXTlist truncover;
	input directory $200.;
run;

 

View solution in original post

4 REPLIES 4
SASKiwi
PROC Star

My understanding is you need quotes around paths that include spaces. How about this?

%let dir=%str(%')S:\cdm\Programming\445\106\Data Cleaning\MDR\MDR Standard Checks\Part B\AE;
%let ext=xlsx%str(%');
ChrisNZ
Tourmaline | Level 20

Better in my opinion to leave the macro variable unquoted, and quote when used.

%let dir=S:\cdm\Programming\445\106\Data Cleaning\MDR\MDR Standard Checks\Part B\AE;
%let ext=xlsx;

filename EXTlist pipe "dir /b /s ""&dir.\*.&ext"" ";

data directory;
	infile EXTlist truncover;
	input directory $200.;
run;

 

djbateman
Lapis Lazuli | Level 10

I knew it was some kind of quoting issue, but I couldn't figure out how many quotes to use, and if they should be single or double.  This method did the trick.  Thanks!

RichardDeVen
Barite | Level 11

Windows filenames can contain ampersands.  You will want to be sure SAS does not try to use the & as a resolution directive.

 

Example:

Wrap path in %NRSTR for explicit assignment.  Use %SUPERQ to resolve the symbol only.

%let path = %nrstr(c:\temp\tom&jerry videos);

filename dir pipe "dir /b /s ""%superq(path)""";

data _null_;
  infile dir;
  input;
  put _infile_;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 843 views
  • 4 likes
  • 4 in conversation