BookmarkSubscribeRSS Feed
thanikondharish
Calcite | Level 5

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. 

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!

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
  • 1121 views
  • 1 like
  • 4 in conversation