btw-decompress-zip

阅读时长 5 分钟读完

Extract files from a ZIP archive

decompress-zip

Extract files from a ZIP archive

Usage

.extract(options)

Extracts the contents of the ZIP archive file.

Returns an EventEmitter with two possible events - error on an error, and extract when the extraction has completed. The value passed to the extract event is a basic log of each file and how it was compressed.

Options

  • path String - Path to extract into (default .)
  • follow Boolean - If true, rather than create stored symlinks as symlinks make a shallow copy of the target instead (default false)
  • filter Function - A function that will be called once for each file in the archive. It takes one argument which is an object containing details of the file. Return true for any file that you want to extract, and false otherwise. (default null)
  • strip Number - Remove leading folders in the path structure. Equivalent to --strip-components for tar.
-- -------------------- ---- -------
--- ------------- - --------------------------
--- -------- - --- -----------------------

-------------------- -------- ----- -
    ------------------- -- --------
---

---------------------- -------- ----- -
    --------------------- -------------
---

----------------------- -------- ----------- ---------- -
    ---------------------- ---- - - ---------- - -- - - -- - - -----------
---

------------------
    ----- ------------
    ------- -------- ------ -
        ------ --------- --- ---------------
    -
---

If path does not exist, decompress-zip will attempt to create it first.

.list()

Much like extract, except:

  • the success event is list
  • the data for the event is an array of paths
  • no files are actually extracted
  • there are no options
-- -------------------- ---- -------
--- ------------- - --------------------------
--- -------- - --- -----------------------

-------------------- -------- ----- -
    ------------------- -- --------
---

------------------- -------- ------- -
    ---------------- ------- ------------
    -------------------
---

----------------

License

MIT © Bower team

HomePage

https://github.com/bower/decompress-zip#readme

Repository

git+https://github.com/bower/decompress-zip.git

来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/60056cbf81e8991b448e6385

纠错
反馈