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

Feature: exclude leading directory when extracting #20

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

Commits on Aug 12, 2020

  1. Excl. leading dir: tmpdir function

    Add function createTmpDir in Unzipper.
    Function creates a temporary directory.
    
    This is a part of a bigger update to add the feature of excluding a
    leading directory in an archive when extracting.
    Hugo Ankarloo committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    a545a31 View commit details
    Browse the repository at this point in the history
  2. Excl. leading dir: directory content move func

    Add function moveFilesExcludingLeadingDir in Unzipper.
    Function moves all files and folders from one directory to another, but
    if the source folder only contains a singe directory, only the content
    of tha single directory will be moved, not the directory itself.
    
    This is a part of a bigger update to add the feature of excluding a
    leading directory in an archive when extracting.
    Hugo Ankarloo committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    e7db034 View commit details
    Browse the repository at this point in the history
  3. Fix description of extractZipArchive() in Unzipper

    The function extractZipArchive() in Unzipper is the only function that
    doesn't have a proper description of its parameters.
    
    This commit aims to correct this.
    Hugo Ankarloo committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    df9b01d View commit details
    Browse the repository at this point in the history
  4. Excl. leading dir: implement feature in Unzipper

    Fully implements the feature in Unzipper of excluding a leading
    directory in an archive when extracting.
    
    The implementation is made to be easily incorporated with any archive
    format.
    Hugo Ankarloo committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    8ad42cd View commit details
    Browse the repository at this point in the history
  5. Excl. leading dir: Add checkbox in frontend

    Adds a checkbox to the html for controlling the usage of the new feature
    of excluding a leading directory in an archive when extracting.
    Hugo Ankarloo committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    3f10a84 View commit details
    Browse the repository at this point in the history