私はフォルダを解凍するためにコマンドライン7 - Zipを使用して探しています。
example.Zip
と言うファイルがあり、そのファイルの内容をexample
というフォルダーに解凍します。
これを実行するために必要なコマンドは何ですか?
7z x example.Zip -oexample
Usage: 7z <command> [<switches>...] <archive_name> [<file_names>...]
[<@listfiles...>]
<Commands>
...
x: eXtract files with full paths
<Switches>
...
-o{Directory}: set Output directory
編集する
7z x *.Zip -o*
extracts all *.Zip archives to subfolders with names of these archives.
奇妙なことに、私はこの例を見つけるために完全なヘルプファイルを見なければなりませんでした。 7z /?には表示されません。
構文は次のようになります。7z x <path to>\duane.Zip -oc:\duane
これにより、アーカイブduane.Zip
のコンテンツがフルパスでフォルダーc:\duane
に抽出されます。
注:スイッチ-o
と保存先フォルダの間にスペースはありません。そのフォルダが存在しない場合は、自動的に作成されます。
p7Zip の場合:
7za e file.7z
単一のファイル、またはアーカイブから選択した一連のファイルを現在のフォルダーに再帰的に抽出します。
7za.exe e art.archive -ir!*Art.jpg