FileStream stream = File.Open(excelFilePath, FileMode.Open, FileAccess.Read);
excelReader = Excel.ExcelReaderFactory.CreateOpenXmlReader(stream);
DataSet result = excelReader.AsDataSet();
result is null for the attached file.
Comments: ** Comment from web user: Ian1971 **
excelReader = Excel.ExcelReaderFactory.CreateOpenXmlReader(stream);
DataSet result = excelReader.AsDataSet();
result is null for the attached file.
Comments: ** Comment from web user: Ian1971 **
This particular file fails in ICSharpCode.SharpZipLib with this error
"Size mismatch between central header(587) and local header(0)" so I'm not sure whether it is a problem with the file itself or SharpZipLib. I don't have time to do any further investigation right now, but if you wanted to raise it with developers in the zip library that would be much appreciated.