GithubHelp home page GithubHelp logo

archiver's People

Contributors

bgaillard avatar

Watchers

 avatar  avatar

archiver's Issues

Implement complex file filters

It would be very useful to pick files using more complex file filters.

Filters for a set of files :

{
    "id" : "archive",
    "cwd" : "dir",
    "dst" : "archive.zip",
    "src" : {
        "patterns" : ["**/*.png", "**/*.gif"],
        "filters : {
            "creationDate" : {
                "olderThan" : "3D",
                "youngerThan" : "15D" 
            }
            "lastModificationDate" : {
                "olderThan" : "3D",
                "youngerThan" : "15D"
            },
            "mimeTypes" : ["image/gif", "image/png"]
        }
    }
}

Very complex file set, take all PDF file which are not inside the a directory and all the PNG files which have a creation date older than 3 days and all the JPG files which have a creation date younger than 15 days.

{
    "id" : "archive",
    "cwd" : "dir",
    "dst" : "archive.zip",
    "src" : [
        "**/*.pdf",
        "!a/**/.pdf",
        {
            "patterns" : ["**/*.png"],
            "filters : {
                "creationDate" : {
                    "olderThan" : "3D"
                }
            }
        }, 
        {
            "patterns" : ["**/*.jpg"],
            "filters : {
                "creationDate" : {
                    "youngerThan" : "15D"
                }
            }
        }
    ]
}

Write the first version of the documentation

The elements to document are the followings :

Install guide

  • Java install
  • Archiver install

Configuration guide

Amazon Glacier plugin

  • --describe-vault
  • --download
  • --list-jobs
  • --list-vaults
  • --get-job-output
  • --initiate-vault-inventory-job
  • --initiate-archive-retrieval-job
  • --multipart-upload
  • --upload-archive

Developer guide

  • ArchiveLocator
  • ICompressor, ZipCompressor
  • ArchiveFile
  • Configuration, Archive, Credentials, Stores
  • IPlugin, AbstractPlugin
  • ICommand, AbstractCommand

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.