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

Quoting the directory path in below statement, when its supplied as a macro variable,

path in

%let logdir = c:\test;

%let filot = %str(%'dir %")&logdir%%str(%" /a-d /b /s%');

%put &filot;

filename catd pipe &filot ;

filename catd pipe %nrstr(&filot);

'%put' resolves &filot to the exact value in filename statement, but none other statements gets resolved.

D Moovendhan

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

%let logdir = c:\test;

%let command = dir "&logdir" /a-d /b /s ;

%put &command;

filename catd pipe %sysfunc(quote(&command));

View solution in original post

5 REPLIES 5
DBailey
Lapis Lazuli | Level 10

try this:


filename catd pipe "&filot" ;

DMoovendhan
Quartz | Level 8

Thank you Bailey, I have tried this, but it doesn't work...

Tom
Super User Tom
Super User

%let logdir = c:\test;

%let command = dir "&logdir" /a-d /b /s ;

%put &command;

filename catd pipe %sysfunc(quote(&command));

DMoovendhan
Quartz | Level 8

Thank you Tom this was more helpful.. Now I know new function quote.. Smiley Happy

Tom
Super User Tom
Super User

You can also just double the internal quotes yourself.

filename catd pipe "dir ""&logdir"" /a-d /b /s ";

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 5 replies
  • 646 views
  • 5 likes
  • 3 in conversation