BookmarkSubscribeRSS Feed
thanikondharish
Fluorite | Level 6

i have one rtf file in this location 'D:\newfolder\ex1.rtf' ;

 

 

how to delete that rtf file by using sas programing?

3 REPLIES 3
Jagadishkatam
Amethyst | Level 16
data have;
	length path $100;
	infile datalines;
	input path;
	datalines;
D:\newfolder\ex1.rtf
;
run;

data _null_;
	set have;	
	fname="temp";
    rc=filename(fname,path);
    if rc = 0 and fexist(fname) then
       rc=fdelete(fname);
    rc=filename(fname);
run;
Thanks,
Jag
Kurt_Bremser
Super User

A simple google search for "sas delete file" would give you loads of answers. Please do at least a little work yourself, it won't break your fingers or make your head explode. Promise.

VDD
Ammonite | Level 13 VDD
Ammonite | Level 13

you asked this same question under 2 different subject.   Please keep subjects together and mark them as completed when someone answers your question/s. 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 3 replies
  • 1366 views
  • 1 like
  • 4 in conversation