MOVE – Windows CMD Command
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 119
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118
Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 119
Move a file from one folder to another
1 2 3 4 5 6 7 8 9 10 11 12 |
Syntax MOVE [options] [Source] [Target] Key source : The path and filename of the file(s) to move. target : The path and filename to move file(s) to. options: /Y Suppress confirmation prompt, when overwriting files. /-Y Enable confirmation prompt, when overwriting files. |
Both Source and Target can be either a folder or a single file.
The source can include wildcards (but not the destination).
Under Windows 2000 and above, the default action is to prompt on overwrite unless the command is being executed from within a batch script.
To force the overwriting of destination files use the COPYCMD environment variable:
SET COPYCMD=/Y
Errorlevels
If the File(s) were successfully moved/renamed %ERRORLEVEL% = 0
If the File was not found, could not be moved/renamed or bad parameters %ERRORLEVEL% = 1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Examples: In the current folder MOVE oldfile.wp newfile.doc Full path specified MOVE g:\department\oldfile.wp "c:\Files to Convert\newfile.doc" Specify the drive and filename (assumes the current folder on both drives is correct) MOVE a:oldfile.wp c:newfile.doc Specify source only (will copy the file to current folder, keeping the same filename) MOVE g:\department\oldfile.wp Quiet move (no feedback on screen) MOVE oldfile.wp newfile.doc >nul Move a file, but do not overwrite if the destination file already exists, this technique only works for a single file, no wildcards ( /-y is required): Echo n|MOVE /-y c:\file1.txt c:\dir\file1.txt |