Good day!
Currently the code to open excel file is:
public void LoadExcelFile(string fullPath)
{
using (var fileStream = File.OpenRead(fullPath))
{
_workbook = WorkbookFactory.Create(fileStream);
}
}
One of the files that I need to open now is password protected.
How can I send in a password to open the file?
Using NPOI version 2.3.0.0
Thank you in advance!