├── .gitattributes ├── HaoZip ├── HaoZip.dll ├── HaoZipC.exe ├── HaoZipFormats.dll └── lang │ └── HaoZipLang_chs.dll ├── README.md ├── auto_zip.py ├── 压缩完成的文件在这里 └── .gitkeep ├── 密码写在这里面.txt └── 需要压缩的文件放这里 └── .gitkeep /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/.gitattributes -------------------------------------------------------------------------------- /HaoZip/HaoZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/HaoZip/HaoZip.dll -------------------------------------------------------------------------------- /HaoZip/HaoZipC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/HaoZip/HaoZipC.exe -------------------------------------------------------------------------------- /HaoZip/HaoZipFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/HaoZip/HaoZipFormats.dll -------------------------------------------------------------------------------- /HaoZip/lang/HaoZipLang_chs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/HaoZip/lang/HaoZipLang_chs.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/README.md -------------------------------------------------------------------------------- /auto_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzonefire/auto_double_zip/HEAD/auto_zip.py -------------------------------------------------------------------------------- /压缩完成的文件在这里/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /密码写在这里面.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /需要压缩的文件放这里/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------