SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
RichardAD
Quartz | Level 8

I've done the following on my own system without seeming problems.  I can't recall when I verified it.  Similar code is going to be to run in a server environment and I don't have access to system commands to verify.

 

<session starts>

/* set up a temporary (work) folder isolated from the main work folder */

%let path = %sysfunc(DCREATE(isolate,%sysfunc(pathname(WORK)))) ;
%let isolate = %sysfunc(pathname(WORK))/isolate ;  /* dont use &path in case code is rerun in session... */

libname ISOLATE "&isolate" ;

/* create stuff in ISOLATE ;
 * create stuff in WORK ;
 * compare, contrast and twiddle data betwixt the two ;
 */

libname ISOLATE ;

<session ends>

 

Will SAS remove the .../isolate sub-folder as well as every file in the then work folder?

 

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

I rely on this behavior all of the time when I use DLCREATDIR and LIBNAME to make temp folders, like this:

 

options dlcreatedir;
%let repopath=%sysfunc(getoption(WORK))/wordle-sas;
libname repo "&repopath.";
data _null_;
    rc = gitfn_clone( 
      "https://github.com/sascommunities/wordle-sas", 
      "&repoPath." 
    ); 
    put 'Git repo cloned ' rc=; 
run;
%include "&repopath./wordle-sas.sas";
 
/* start a game and submit first guess */
%startGame;
%guess(adieu);

One cool thing about this technique is that you can use a concatenated LIBNAME to create multiple folders.

options dlcreatedir;
%let outdir=%sysfunc(getoption(WORK));
libname res ("&outdir./results", "&outdir./results/images");
libname res clear;
Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!

View solution in original post

6 REPLIES 6
PaigeMiller
Diamond | Level 26

I don't really know the answer, but YOU could try it yourself and find out the answer in seconds! Please let us all know what the answer is.

 

Maxim 4: If in doubt, do a test run and look at the results.

--
Paige Miller
Tom
Super User Tom
Super User

In general yes.  At least it has in every installation I have used.

 

You could try it yourself.  Run your program, make sure the actual path is printed into the SAS log, and then check if the folder is gone after the job ends.

 

Note there is a SAS option to disable the automatic removal of the WORK directory.  So make sure you don't have that option set.

RichardAD
Quartz | Level 8
I'm running code in a balanced server environment, so different SAS sessions can end up on different hosts and becomes more time consuming.
SASKiwi
PROC Star

It did for me with a manually-created folder done via Windows Explorer. I don't think a DCREATE'd folder would behave any differently.

Patrick
Opal | Level 21

I've used this approach in various environments over the years and never observed any issues. Based on experience I'd say that when SAS terminates a session it always removes the work folder and all its content irrespective of its content.

ChrisHemedinger
Community Manager

I rely on this behavior all of the time when I use DLCREATDIR and LIBNAME to make temp folders, like this:

 

options dlcreatedir;
%let repopath=%sysfunc(getoption(WORK))/wordle-sas;
libname repo "&repopath.";
data _null_;
    rc = gitfn_clone( 
      "https://github.com/sascommunities/wordle-sas", 
      "&repoPath." 
    ); 
    put 'Git repo cloned ' rc=; 
run;
%include "&repopath./wordle-sas.sas";
 
/* start a game and submit first guess */
%startGame;
%guess(adieu);

One cool thing about this technique is that you can use a concatenated LIBNAME to create multiple folders.

options dlcreatedir;
%let outdir=%sysfunc(getoption(WORK));
libname res ("&outdir./results", "&outdir./results/images");
libname res clear;
Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. 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
  • 6 replies
  • 764 views
  • 7 likes
  • 6 in conversation