Convert xls to csv
i need to create at runtime开发者_运维知识库 a csv from a xls file, i utilize this:
ws.SaveAs(filename, Excel.XlFileFormat.xlCSV, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
this code work but my problem is that i need semicolon like column separator and not comma.
How can i change this behavior?
thx
You can use FileHelpers library to import/export data from fixed length or delimited records. This has helped me a lot in the past while dealing with csv. You can download it and also find a lot of quick start examples and sample projects here
It's a good library but i don't need a typed csvengine, it require:
FileHelperEngine engine = new FileHelperEngine(typeof(SampleType));
but i have not SampleType...
精彩评论