I'm using the rails Spreadsheet gem (http://spreadsheet.rubyforge.org/GUIDE_txt.html) to import excel data into my application.
I can get the Excel file to upload fine and use:
book = Spreadsheet.open filePath
to open the file
This works fine if the file is a valid Excel file, but if my user decides to upload a random image file or something else instead, I get this error:
OLE2 signature is invalid
Which is understandable.
I can't find anywhere a way to validate the file before I open it. I'd rather not do it by file extension if I can help it, does anyone know a way to try to validate the file by content type before I open it?
Ta, Jo