BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Citrine10
Obsidian | Level 7

Hi there, 

How can I clear contents of a csv file? I dont want it to delete the file, instead it must just empty the file so that I have a blank file.

1 ACCEPTED SOLUTION

Accepted Solutions
s_lassen
Meteorite | Level 14

You can do it with a datastep, e.g.

filename csvfile '<path to file>';

data _null_;
  file csvfile old;
run;

By specifying the OLD disposition for the file and writing nothing to it, it gets cleared.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

Just create it anew with the FILE statement in a data step:

data _null_;
set sashelp.class;
file "~/test.csv" dlm=",";
put name sex age;
run;

data _null_;
length fref $8;
rc = filename(fref,"~/test.csv");
fid = fopen(fref);
do i = 1 to foptnum(fid);
  optname = foptname(fid,i);
  infitem = finfo(fid,optname);
  put optname "=" infitem;
end;
rc = fclose(fid);
rc = filename(fref);
run;

data _null_;
file "~/test.csv";
run;

data _null_;
length fref $8;
rc = filename(fref,"~/test.csv");
fid = fopen(fref);
do i = 1 to foptnum(fid);
  optname = foptname(fid,i);
  infitem = finfo(fid,optname);
  put optname "=" infitem;
end;
rc = fclose(fid);
rc = filename(fref);
run;
s_lassen
Meteorite | Level 14

You can do it with a datastep, e.g.

filename csvfile '<path to file>';

data _null_;
  file csvfile old;
run;

By specifying the OLD disposition for the file and writing nothing to it, it gets cleared.

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
  • 2 replies
  • 655 views
  • 3 likes
  • 3 in conversation