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

Hello please help me to write x command to copy single file. using Base SAS 9.1

I have &dir resolves to w:\woo\finance\

and    &fname resolves to send file name 09-18-2014.txt

and then i am using below x command to transfer the file

option noxwait;

data _null_;

x "copy &&dir..&fname \\server_path";

run;

this is not resolving to w:\woo\finance\send file name 09-18-2014.txt and file not getting transfer and giving warning message like


The quoted string currently being processed has become more than 262 characters long.

         You may have unbalanced quotation marks.

can someone please help???????

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

If the path has spaces, it needs quotes around it as well. Find the command that works from the command line or a .bat file first then find a way to get SAS to accomplish the same.

Try using %sysexec if you want as well.

%sysexec copy "file path 1" "path 2";

View solution in original post

3 REPLIES 3
ballardw
Super User

x "copy &dir.&fname. \\server_path";

two .. in start had one resolve to w:\woo\finance\.send file name 09-18-2014.txt

Reeza
Super User

If the path has spaces, it needs quotes around it as well. Find the command that works from the command line or a .bat file first then find a way to get SAS to accomplish the same.

Try using %sysexec if you want as well.

%sysexec copy "file path 1" "path 2";

woo
Barite | Level 11 woo
Barite | Level 11

Thanks Reeza & Ballardw...

x copy "&dir.&fname." "\\server path"; did work. Reeza, its good to know i can use %sysexec too...

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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