BookmarkSubscribeRSS Feed
GreggB
Pyrite | Level 9

I want to copy a file that is saved to  G:\Departments\Research\MAP\1112\MAP - 1stQ_Grades - PASS  to another server whose path is \\Tse-apps-fs1\tse-app-data\District\SHARED.  The name of the file is Tam Elem.xls

2 REPLIES 2
twocanbazza
Quartz | Level 8

In windows, RMB copy, then RMB Paste in the appropriate location Smiley Wink

OS2Rules
Obsidian | Level 7

Copy using SAS:

  %let copycmd1 = COPY "from\dir\file.xls" "to\dir\file.xls" ;

  data _null_;

  option noxwait;

  X &copycmd1;

  run;

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
  • 2 replies
  • 2695 views
  • 0 likes
  • 3 in conversation