Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse XLSX files with unusual structure #129

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Oct 11, 2024

  1. Parse XLSX files with unusual structure

    Normally you will find `workbook.xml` in the `xl` directory, but recently we got a file where it was located in the root.
    
    To find the actual location of workbook, we must parse the file `_rels/.rels`. A separate rels file located relative to the workbook then points out the locations of the sheets, styles and shared strings.
    stenlarsson committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    e46a9d8 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2024

  1. Handle files missing _rels/.rels

    We found an XLSX missing the `_rels/.rels` file, and in this case falling back to the default path worked.
    stenlarsson committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    a63f0a5 View commit details
    Browse the repository at this point in the history