Verify CSV file

  • Thread starter Thread starter dotnet
  • Start date Start date
D

dotnet

Is there a way to validate if a CSV file is Valid in dotnet?

Any direction is appriciate it.
 
Being able to 'validate' a CSV file depends all on knowing the layout, or
schema, of what format you are expecting and then following that to judge if
the file is valid. It is not simple since the CVS file format has no real
consistent schema definition format like you can do with XML.
 
Back
Top