Remove rows from CSV files

  • Thread starter Thread starter kr_amitso
  • Start date Start date
K

kr_amitso

I need to remove top 3 files from csv files before reading csv file.

please give me link or peace of code for removing the rows from csv
file.


Thanks,
Amit
 
I need to remove top 3 files from csv files before reading csv file.

please give me link or peace of code for removing the rows from csv
file.

How are you reading the file? If you are using a StreamReader, just
execute the ReadLine() method on your StreamReader three times before you
start processing the rest of the file.
 
Back
Top