I'm trying write a simple perl script that reads some fields from a password protected XSLX file.

I've looked at Spreadsheet::XLSX and SimpleXlsx but neither seem to support password protected files.

Any idea how this can be done?

Using Win32::OLE This is done like so:

my $Book =
  $Excel->Workbooks->Open( { FileName => $file, Password => $password } );
link|improve this question

Thanks for the responses, sadly not straight forward then. Luckily I have the option of reading an old style xsl and this is simple using Spreadsheet::ParseExcel. – Jim Nov 1 '11 at 17:34
Given that my suggestion was basically a kludge to convert the XLSX back into an XLS so you could read it, I heartily agree that if you can get the file still provided as old XLS that's a better way to go.) – Ian Nov 1 '11 at 18:35
feedback

2 Answers

up vote 3 down vote accepted

None of the current Perl xlsx reading modules support reading encrypted files.

It isn't straightforward to decrypt these files since the encrypted XML files are stored in an OLE container document as opposed to the usual ZIP container.

link|improve this answer
feedback

This "should" be doable with OpenOffice/LibreOffice. There seem to be quite a few bugs around xlsx and encrypted file support, not to mention the combination, so I'd try opening the files in LibreOffice GUI first and if that works for your specific files, call it via library or command line.

OpenOffice::OODOC is the Perl connector, if that doesn't work you can use the command line to convert to a non-password protected file and then open it in your tool of choice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.