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;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2387 views
  • 0 likes
  • 3 in conversation