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

Hi 

 

I want to move a file from one directory to another directory in sas using x command.

below is my command:

 

x "mv &rawfile. &archivefile.";

 

but the file is not moving..

 

is anything wrong in the code?

 

Thanks,

Swathi

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

To check if the command works, do this:

filename oscmd pipe "mv &rawfile. &archivefile 2>&1";

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

This will put all messages from the command into the log. If nothing is read, the command worked.

View solution in original post

4 REPLIES 4
ballardw
Super User

Do your macro variables contain fully qualified paths? If not the source file is likely being searched for subordinate to the location of where the SAS is currently executing and not finding the file.

 

Also some environments your admin may have the system XCMD option disabled. You may be able to test this with:

proc options option=xcmd;run;

If the log shows NOXCMD that would be one thing to address.

 

Kurt_Bremser
Super User

To check if the command works, do this:

filename oscmd pipe "mv &rawfile. &archivefile 2>&1";

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

This will put all messages from the command into the log. If nothing is read, the command worked.

sfffdg
Obsidian | Level 7
Thank you sir!!
Reeza
Super User

FCOPY() function

 


@sfffdg wrote:

Hi 

 

I want to move a file from one directory to another directory in sas using x command.

below is my command:

 

x "mv &rawfile. &archivefile.";

 

but the file is not moving..

 

is anything wrong in the code?

 

Thanks,

Swathi


 

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 5935 views
  • 2 likes
  • 4 in conversation