BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
OS2Rules
Obsidian | Level 7

Hi All:

When I run the following code:

  filename DIRLIST pipe "dir  &dircmd";                                                                                                

  data dirlist ;                                                                                                                       

  length buffer $256 ;                                                                                                                 

  infile dirlist length=reclen ;                                                                                                       

  input buffer $varying256. reclen ;                                                                                                   

  run ;

Where &dircmd resolves to "p:\sas\data\input lib\*.*"

the program fails on:

  Stderr output:

  The system cannot find the file specified. 

  NOTE: 0 records were read from the infile DIRLIST.

But - if I change the space in the name to an underscore - ( input_lib ) - then the program works OK. 

Is it possible to get it to work with the space in the file name?

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

I got it to work NOT.  I didn't check the output file.  However, the following DID work:

%let dircmd=c:\art\input lib\*.*;

filename DIRLIST pipe "dir %bquote("&dircmd.")";

  data dirlist ;

   length buffer $256 ;

   infile dirlist length=reclen ;

   input buffer $varying256. reclen ;

   run ;

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

The following works for me:

%let dircmd=c:\art\input lib\*.*;

filename DIRLIST pipe 'dir  "&dircmd"';                                                                                               

  data dirlist ;                                                                                                                      

   length buffer $256 ;                                                                                                                

   infile dirlist length=reclen ;                                                                                                      

   input buffer $varying256. reclen ;                                                                                                  

   run ;

OS2Rules
Obsidian | Level 7

Art:

How on earth did you get that to work?

you have your macro variable within single quotes....

When I try it I get:

NOTE: The infile DIRLIST is:

      Unnamed Pipe Access Device,

      PROCESS=dir  "&dircmd",RECFM=V,LRECL=256

Stderr output:

File Not Found

art297
Opal | Level 21

I got it to work NOT.  I didn't check the output file.  However, the following DID work:

%let dircmd=c:\art\input lib\*.*;

filename DIRLIST pipe "dir %bquote("&dircmd.")";

  data dirlist ;

   length buffer $256 ;

   infile dirlist length=reclen ;

   input buffer $varying256. reclen ;

   run ;

OS2Rules
Obsidian | Level 7

Art:

Much better.

I'm not so up on these new fangled macro functions, but that works.

Thanks again.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 2060 views
  • 0 likes
  • 2 in conversation