web-dev-qa-db-ja.com

7Zipコマンドが指定された出力ディレクトリに抽出されない

7z x d:\migration\mongo\mongodb.7z o:f:\data *.* -r

このコマンドをバッチの一部として使用して、7zファイルの内容を1つのドライブ(D)から別のドライブ(F)に抽出しています。フォルダー構造は重要なので、再帰的にxコマンドを使用しています。

発生するはずのことは、アーカイブの内容がf:\dataに解凍されることです。

何が実際に起こっている内容はバッチファイルのディレクトリ作業ディレクトリ(f:\migration\)に解凍されています。コマンドで作業ディレクトリ(-w:)を指定しても効果はありません。

コマンドを意図したとおりに機能させるにはどうすればよいですか?

Windows Server 2012R2で7Zipx649.22bを使用しています。

編集:私の最初の質問は、データが2つの同時の場所に抽出されていることを指摘しました。結局のところ、そうではありませんでした。私の質問はこれを反映するように更新されました。

4
Chad Levy

7za.exe(コマンドラインバージョン)を使用していますが、7z.exeについても同じことが言えます。ヘルプメッセージをよく見てください注意深く

7-Zip (A) 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18

Usage: 7za <command> [<switches>...] <archive_name> [<file_names>...]
       [<@listfiles...>]

<Commands>
  a: Add files to archive
  b: Benchmark
  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

<Switches>
  -ai[r[-|0]]{@listfile|!wildcard}: Include archives
  -ax[r[-|0]]{@listfile|!wildcard}: eXclude archives
  -bd: Disable percentage indicator
  -i[r[-|0]]{@listfile|!wildcard}: Include filenames
  -m{Parameters}: set compression Method
  -o{Directory}: set Output directory
  -p{Password}: set Password
  -r[-|0]: Recurse subdirectories
  -scs{UTF-8 | WIN | DOS}: set charset for list files
  -sfx[{name}]: Create SFX archive
  -si[{name}]: read data from stdin
  -slt: show technical information for l (List) command
  -so: write data to stdout
  -ssc[-]: set sensitive case mode
  -ssw: compress shared files
  -t{Type}: Set type of archive
  -u[-][p#][q#][r#][x#][y#][z#][!newArchiveName]: Update options
  -v{Size}[b|k|m|g]: Create volumes
  -w[{path}]: assign Work directory. Empty path means a temporary directory
  -x[r[-|0]]]{@listfile|!wildcard}: eXclude filenames
  -y: assume Yes on all queries

スイッチが-o-wであることが明確に示されていることがわかりますか?のように、スイッチの前にはhyphenがありますが、コマンドはありません。また、コロンはスイッチ自体のnot部分です。もしそうなら、パスで抽出するためにxだけでなくx:を同様に使用するべきでした。したがって、o:<Path>w:<Path>の奇妙な使用法が頭痛の種です。

次のようなものを使用して、フォルダを再帰的に圧縮し、相対パスを保存します。

7za a -r Archive.7z C:\InputFolder

以下を使用して、特定のディレクトリに抽出します。

7za x -oD:\OutputFolder Archive.7z

明らかに、フォルダ名にスペースが含まれている場合は、二重引用符を使用してください。

7
Karan