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

Enumerate unzipped files #10842

Commits on Oct 13, 2023

  1. Keep all uploaded zip content accessible

    iterdir() is platform dependent, that is the order of the returned items
    may be different on different platforms. In cases where a zip file
    contains multiple base_file candidates it will be overridden by the last
    one found (which varies on different platforms).
    
    Also, different files with the same extension (file1.csv, file2.csv) will not
    be accessible from file_paths as they get overridden, too.
    
    The fix enumerates all files to make them accessible from file_paths.
    ridoo committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    7869104 View commit details
    Browse the repository at this point in the history
  2. Sorts files during unzip

    Ensures that unpacked content is sorted before getting handled
    ridoo committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    15e4d45 View commit details
    Browse the repository at this point in the history
  3. Resolve minor issues

    ridoo committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    37be03a View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Configuration menu
    Copy the full SHA
    9623ff9 View commit details
    Browse the repository at this point in the history