-
Append to CSV file
Hello,
When started my app connects to Access 07 DB and checks if TableA has more than 1000 records.
If so,it exports them to a CSV file and deletes them from the table.
After some time,TableA will again reach 1000+ record,and I will again need to export them.
But,I do not want to create a new CSV file,but rather append to existing one.
Any directions?
Thank you!
-
Re: Append to CSV file
-
Re: Append to CSV file
A csv file is just a text file. And when wrting to a text file, you can specify whether to overwrite or append to it by using the appropriate overload constructor of the streamwriter class.