web-dev-qa-db-ja.com

コマンドラインを使用して、あるフォルダーから別のフォルダーにすべてのファイルを移動するにはどうすればよいですか?

あるフォルダーから別のフォルダーにすべてのファイルを移動するための最良のコマンドは何ですか?

これをバッチファイル内から行いたいです。

49
Chirag

これにはmoveを使用できます。 help moveのドキュメントには次のように記載されています。

Moves files and renames files and directories.

To move one or more files:
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination

To rename a directory:
MOVE [/Y | /-Y] [drive:][path]dirname1 dirname2

  [drive:][path]filename1 Specifies the location and name of the file
                          or files you want to move.
  destination             Specifies the new location of the file. Destination
                          can consist of a drive letter and colon, a
                          directory name, or a combination. If you are moving
                          only one file, you can also include a filename if
                          you want to rename the file when you move it.
  [drive:][path]dirname1  Specifies the directory you want to rename.
  dirname2                Specifies the new name of the directory.

  /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.

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

最初にqq1およびqq2ディレクトリにそれぞれ3つのファイルがあり、ファイルがないことを示す例については、次のトランスクリプトを参照してください。次に、moveを実行し、3つのファイルがqq1からqq2に期待どおりに移動されたことを確認します。

C:\Documents and Settings\Pax\My Documents>dir qq1
 Volume in drive C is Primary
 Volume Serial Number is 04F7-0E7B

 Directory of C:\Documents and Settings\Pax\My Documents\qq1

20/01/2011  11:36 AM    <DIR>          .
20/01/2011  11:36 AM    <DIR>          ..
20/01/2011  11:36 AM                13 xx1
20/01/2011  11:36 AM                13 xx2
20/01/2011  11:36 AM                13 xx3
               3 File(s)             39 bytes
               2 Dir(s)  20,092,547,072 bytes free

C:\Documents and Settings\Pax\My Documents>dir qq2
 Volume in drive C is Primary
 Volume Serial Number is 04F7-0E7B

 Directory of C:\Documents and Settings\Pax\My Documents\qq2

20/01/2011  11:36 AM    <DIR>          .
20/01/2011  11:36 AM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  20,092,547,072 bytes free

C:\Documents and Settings\Pax\My Documents>move qq1\* qq2
C:\Documents and Settings\Pax\My Documents\qq1\xx1
C:\Documents and Settings\Pax\My Documents\qq1\xx2
C:\Documents and Settings\Pax\My Documents\qq1\xx3

C:\Documents and Settings\Pax\My Documents>dir qq1
 Volume in drive C is Primary
 Volume Serial Number is 04F7-0E7B

 Directory of C:\Documents and Settings\Pax\My Documents\qq1

20/01/2011  11:37 AM    <DIR>          .
20/01/2011  11:37 AM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)  20,092,547,072 bytes free

C:\Documents and Settings\Pax\My Documents>dir qq2
 Volume in drive C is Primary
 Volume Serial Number is 04F7-0E7B

 Directory of C:\Documents and Settings\Pax\My Documents\qq2

20/01/2011  11:37 AM    <DIR>          .
20/01/2011  11:37 AM    <DIR>          ..
20/01/2011  11:36 AM                13 xx1
20/01/2011  11:36 AM                13 xx2
20/01/2011  11:36 AM                13 xx3
               3 File(s)             39 bytes
               2 Dir(s)  20,092,547,072 bytes free
53
paxdiablo
move c:\sourcefolder c:\targetfolder

動作しますが、次のような構造になります。

c:\targetfolder\sourcefolder\[all the subfolders & files]

あるフォルダーの内容だけを別のフォルダーに移動する場合は、次のようにします。

SET src_folder=c:\srcfold
SET tar_folder=c:\tarfold

for /f %%a IN ('dir "%src_folder%" /b') do move %src_folder%\%%a %tar_folder%

pause
31
JosephStyons

このコマンドは、originalfolder内のすべてのファイルをdestinationfolderに移動します。

MOVE c:\originalfolder\* c:\destinationfolder

(ただし、サブフォルダーを新しい場所に移動することはありません。)

MOVEコマンドの指示を検索するには、Windowsコマンドプロンプトでこれを入力します。

MOVE /?
17
P.Turpie

Windowsではmove /?、Unixシステムではman mvを検索

4
Sanjit Saluja

コマンドmoveを使用できます

move <source directory> <destination directory>

参照

3
Arun P Johny

moveを使用してからmove <file or folder> <destination directory>を使用します

2
ovrwngtvity

ロボコピーは最も用途が広いようです。ヘルプで他のオプションを参照してください

robocopy /?
robocopy SRC DST /E /MOV
2
Gregg

ファイルパスにスペースがある場合は、必ず引用符を使用してください。

move "C:\Users\MyName\My Old Folder\*" "C:\Users\MyName\My New Folder"

C:\Users\MyName\My Old Folder\の内容がC:\Users\MyName\My New Folderに移動します

1
Pikamander2