SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
GeorgeSAS
Lapis Lazuli | Level 10

Hello All,

 

After I run a SAS program in UNIX the program can create a folder " /home/A123456ABC/XYZ/ABC"  for me. how to write the SAS code?

 

Thanks!

 

x123456789-aaa-15$ pwd
/home/A123456ABC/My_report
x123456789-aaa-16$  sas the_code_needed.sas

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

SAS doesn't have any special code to create a directory.  Instead, it lets you issue a Unix command.  For example, within a SAS program you could code:

 

%sysexec cd /home/A123456ABC;

%sysexec mkdir My_Reports_test1;

 

I can't test it right now, but you should test it when the program you submit is in your home folder, as well as when the program is in some other folder.

View solution in original post

5 REPLIES 5
Astounding
PROC Star

SAS doesn't have any special code to create a directory.  Instead, it lets you issue a Unix command.  For example, within a SAS program you could code:

 

%sysexec cd /home/A123456ABC;

%sysexec mkdir My_Reports_test1;

 

I can't test it right now, but you should test it when the program you submit is in your home folder, as well as when the program is in some other folder.

GeorgeSAS
Lapis Lazuli | Level 10

How to embed the unix command into SAS code? I want the SAS code be executed automation include creating new folder step.

Astounding
PROC Star

%sysexec is the SAS code.  It doesn't need to be embedded.  Just save it as a .sas file and run it.

boemskats
Lapis Lazuli | Level 10

Not strictly true. This can also be useful if you don't have xcmd permissions:

 

http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002986745.htm

 

Ksharp
Super User

Check function  DCREATE() .

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 5 replies
  • 6091 views
  • 3 likes
  • 4 in conversation