Error DataBase-One Place all Solutions Forums Blog Glossary    Contact Us
Search  
   
Browse by Category
Error DataBase-One Place all Solutions .: Operating Systems .: Windows Operating Systems .: MS DOS .: How to Move a file from one folder to another using MOVE command

How to Move a file from one folder to another using MOVE command

Move a file from one folder to another

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: (Windows 2000 only) /Y Suppress confirmation prompt. /-Y Enable confirmation prompt.


Both Source and Target may be either a folder or a single file.

The source may include wildcards (but not the destination).

Under Windows 2000 the default action is to prompt on overwrites unless the command is being executed from within a batch script.
To force the overwriting of destination files under both NT4 and Windows2000 use the COPYCMD environment variable:
SET COPYCMD=/Y
This will turn off the prompt in Win2000 and will be ignored by NT4 (which overwrites by default).

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


How helpful was this article to you?

Related Articles

article How to Move File using MV.exe (Resource Kit)
Move File - Copy a file to another location...

(No rating)  3-9-2008    Views: 154   
article How to Move a user account into a domain or edit an NT username using MOVEUSER.exe command (Resourse Kit)
MOVEUSER.exe (Resource Kit) Move a user...

(No rating)  3-9-2008    Views: 158   
article How to move a Citrix License Server
There will probably come a time when you need...

(No rating)  4-21-2008    Views: 279   

User Comments

Add Comment
No comments have been posted.