copy

1 つまたは複数のファイルを別の場所にコピーします。


copy

  • help copy

Output:

1 つまたは複数のファイルを別の場所にコピーします。

COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/L] [/A | /B] 送り側 [/A | /B]
     [+ 送り側 [/A | /B] [+ ...]] [受け側 [/A | /B]]

  送り側    コピーするファイル (複数可) を指定します。
  /A        ASCII テキスト ファイルとして扱います。
  /B        バイナリ ファイルとして扱います。
  /D        受け側のファイルが暗号化が解除されて作成されるようにします。
  受け側    新しいファイルのディレクトリまたはファイル名 (複数可) を指定し
            ます。
  /V        新しいファイルが正しく書き込まれたか検査します。
  /N        MS-DOS 形式以外の名前のファイルをコピーするときに、利用可能な
            らば、短いファイル名を使用します。
  /Y        受け側の既存のファイルを上書きする前に確認のメッセージを表示し
            ません。
  /-Y       受け側の既存のファイルを上書きする前に確認のメッセージを表示し
            ます。
  /Z        ネットワーク ファイルを再起動可能モードでコピーします。
  /L        送り側がシンボリック リンクの場合は、送り側リンクが指し示す
            実際のファイルではなく、リンクをターゲットにコピーします。

環境変数 COPYCMD でスイッチ /Y が設定されている場合があります。
このスイッチは、コマンド ラインから /-Y が指定されると無効になります。既定
では、COPY コマンドがバッチ スクリプトから実行されていない場合、上書き確認
メッセージが表示されます。

複数のファイルを追加するときは、受け側に 1 個のファイルを指定し、送り側に
複数のファイルを指定します (ワイルドカードを使うか、ファイル 1 + ファイル 2 +
ファイル 3 と指定します)。
Copies one or more files to another location.

COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/L] [/A | /B ] source [/A | /B]
     [+ source [/A | /B] [+ ...]] [destination [/A | /B]]

  source       Specifies the file or files to be copied.
  /A           Indicates an ASCII text file.
  /B           Indicates a binary file.
  /D           Allow the destination file to be created decrypted
  destination  Specifies the directory and/or filename for the new file(s).
  /V           Verifies that new files are written correctly.
  /N           Uses short filename, if available, when copying a file with a
               non-8dot3 name.
  /Y           Suppresses prompting to confirm you want to overwrite an
               existing destination file.
  /-Y          Causes prompting to confirm you want to overwrite an
               existing destination file.
  /Z           Copies networked files in restartable mode.
  /L           If the source is a symbolic link, copy the link to the target
               instead of the actual file the source link points to.

The switch /Y may be preset in the COPYCMD environment variable.
This may be overridden with /-Y on the command line.  Default is
to prompt on overwrites unless COPY command is being executed from
within a batch script.

To append files, specify a single file for destination, but multiple files
for source (using wildcards or file1+file2+file3 format).

Return Code: 1


Built with Hugo
テーマ StackJimmy によって設計されています。