2019年12月4日水曜日

7-Zip コマンドラインでファイルを解凍

7-Zip コマンドラインで圧縮ファイルを解凍

7-Zipをシステムにインストールせずに、ファイルを解凍する場合、7-Zip コマンドラインバージョンを利用します。



<Commands>
  a: Add files to archive             圧縮ファイル作成
  b: Benchmark                         PCのベンチマーク
  d: Delete files from archive      圧縮ファイル内のファイルを削除
  e: Extract files from archive (without using directory names)
  l: List contents of archive         内容を一覧
  t: Test integrity of archive        整合性をテスト
  u: Update files to archive         圧縮ファイル内のファイルを追加
  x: eXtract files with full paths    完全なパスで解凍

解凍の例
例1.   フォルダを作成しファイルを解凍する。
         -o{Directory}: set Output directory  解凍フォルダを設定
         7za.exe x -o./newfolder/ vlc-3.0.7.1-win32.7z
         7za.exe x -oc:\temp vlc-3.0.7.1-win32.7z

例2.   ファイル(vlc-3.0.7.1-win32.7z)を解凍する
         7za.exe x vlc-3.0.7.1-win32.7z


圧縮の例
例1.   フォルダを圧縮する。
         -t{Type}: Set type of archive   圧縮ファイル種類を設定
         7za.exe a -t7z new7zFile newfolder   
         作成したファイル new7zFile.7z

         7za.exe a -tzip new7zFile newfolder
         作成したファイル new7zFile.zip

        7za.exe a -ttar new7zFile newfolder
        作成したファイル new7zFile.tar

7-Zipの対応形式
圧縮/解凍(展開):7z、ZIP、GZIP、BZIP2、TAR.
解凍(展開)のみ:ARJ、CAB、CHM、CPIO、DEB、DMG、HFS、ISO、LZH、LZMA、MSI、NSIS、RAR、RPM、UDF、WIM、XAR、Z.








end

0 件のコメント:

コメントを投稿