1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

コマンドプロンプト 強制的にディレクトリーごとファイルコピー

Last updated at Posted at 2021-01-27

目的:
テスト用のファイル等ほぼ同じファイル構成で複数用意しなくてはいけない時に便利

サンプル:
・ディレクトリーごと
xcopy /ye copyTarget renameCopyFolder¥

・ファイルのみ
copy /y copyTargetFile copyDirectly¥
※copyDirectlyは予め作成しておくこと(mkdir copyDirectly)

解説:
xcopy /ye [コピー元ディレクトリ] [コピー先ディレクトリ]¥  

補足:
xcopy :ファイルやフォルダをコピーする時に使う(ファイルのみの場合はcopy)
/y :同名ファイルが存在する場合上書き確認を行わない
/e :ファイルが存在しなくてもディレクトリーごとコピー
最後の¥ :これが無いとコピー先がファイルかディレクトリーか聞かれて面倒くさい

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?