user3151262
user3151262

Reputation: 161

Error when trying to read an .xls file using EPPlus

The following code is working fine for .xlsx, but it's not working for .xls. I got this error message

Can not open the package. Package is an OLE compound document. If this is an encrypted package, please supply the password

Code

string filepath = txtBrowse.Text;

FileStream stream = System.IO.File.Open(filepath, FileMode.Open, FileAccess.ReadWrite);
//1. Reading from a binary Excel file ('97-2003 format; *.xls)
IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryReader(stream);

FileInfo newFile = new FileInfo(filepath);

using (ExcelPackage package = new ExcelPackage(newFile))
{
    string sheetName = System.DateTime.Now.ToShortDateString();

    foreach (OfficeOpenXml.ExcelWorksheet sheet in package.Workbook.Worksheets)
    {
        // Check the name of the current sheet
        if (sheet.Name == sheetName)
        {
            package.Workbook.Worksheets.Delete(sheetName);
            break; // Exit the loop now
        }
    }

    ExcelWorksheet worksheet = package.Workbook.Worksheets.Add(System.DateTime.Now.ToShortDateString());
}

How do I do this correctly?

Upvotes: 16

Views: 42868

Answers (2)

ajwaka
ajwaka

Reputation: 608

I succesfully used Tony's answer https://stackoverflow.com/a/18904633/306515 and simply convert it using Microsoft.Office.Interop.Excel and can still then use epplus

Upvotes: 7

Cory Nelson
Cory Nelson

Reputation: 29981

EPPlus does not work with the XLS format. Only XLSX. You'll need to find a new library.

Upvotes: 30

Related Questions