We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i need some help to make extract/extract full with filename or fileext filter.
i try use { p: '.png}, and { ax : '.png'} for exclude files, but not work., ref 7zip api document
The text was updated successfully, but these errors were encountered:
version 0.3.0. wildcards #3
533fa4a
now you can use the wildcards attributes in the options. also do not forget the * when specify a wildcard.
wildcards
*
check the last section of the README.
7z a -tzip archive.zip *.txt -x!temp.* adds to the archive archive.zip all .txt files, except temp. files. becomes :
7z a -tzip archive.zip *.txt -x!temp.*
sevenzip.add('archive.zip', '*.txt', { t: 'zip', x: '!temp.*' })
http://7zip.bugaco.com/7zip/MANUAL/switches/exclude.htm
Sorry, something went wrong.
q2s2t
No branches or pull requests
i need some help to make extract/extract full with filename or fileext filter.
i try use { p: '.png}, and { ax : '.png'} for exclude files, but not work., ref 7zip api document
The text was updated successfully, but these errors were encountered: