Saturday, October 27, 2012

How to zip & split file by 7zip command line


http://www.codejacked.com/zip-up-files-from-the-command-line/
http://www.dotnetperls.com/7-zip-examples

Example
7z a -v100m vs2012_winexp_enu.iso.7z vs2012_winexp_enu.iso
7za a -v100m -tzip vs2012_winexp_enu.iso.zip vs2012_winexp_enu.iso
อธิบายคร่าวๆ

  • command a เป็นการสร้างไฟล์ 7z
  • switch v ค่าเป็น 100MB เราใส่เป็น 100m คือ มันจะตัดทุกๆ 100MB แล้วจะขึ้นไฟล์ใหม่
  • ไฟล์ output ที่จะ zip


ตัวอย่าง output ที่ได้
vs2012_winexp_enu.iso.7z.001
vs2012_winexp_enu.iso.7z.002
vs2012_winexp_enu.iso.7z.003 
vs2012_winexp_enu.iso.zip.001
vs2012_winexp_enu.iso.zip.002
vs2012_winexp_enu.iso.zip.003

Switch v
Here we note how you can use the "v" switch on the command line. In data compression, a volume is a segment of a dataset that is a certain number of bytes long. The volume switch in 7za.exe allows you to specify the exact size in bytes, kilobytes, or megabytes. Additionally, you can specify sequential volumes.

No comments:

Post a Comment

Popular Posts