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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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