Move (command)

In today's world, Move (command) is an issue that has become increasingly relevant in society. Since its emergence, Move (command) has been the subject of debate and interest, generating conflicting opinions and arousing the curiosity of experts and laypeople alike. Whether due to its impact on daily life, its historical relevance or its influence in various areas, Move (command) has established itself as a topic of global interest. In this article, we will explore the different facets of Move (command) and discuss its importance in the current context.

move
Developer(s)Microsoft, IBM, JP Software, DR, Novell, Joe Cosentino, ReactOS Contributors
Written inFreeDOS, ReactOS: C
Operating systemMS-DOS, PC DOS, MSX-DOS, OS/2, eComStation, ArcaOS, Windows, DR DOS, FreeDOS, ReactOS
PlatformCross-platform
TypeCommand
LicenseFreeDOS, ReactOS: GPLv2

In computing, move is a command in various command-line interpreters (shells) such as COMMAND.COM, cmd.exe, 4DOS/4NT, and PowerShell. It is used to move one or more files or directories from one place to another. The original file is deleted, and the new file may have the same or a different name. The command is analogous to the Unix mv command and to the OpenVOS move_file and move_dircommands.

Implementations

The command is available in DOS, IBM OS/2, Microsoft Windows and ReactOS. On MS-DOS, the command is available in versions 6 and later. In Windows PowerShell, move is a predefined command alias for the Move-Item Cmdlet which basically serves the same purpose. The FreeDOS version was developed by Joe Cosentino. DR DOS 6.0 includes an implementation of the move command. The open-source MS-DOS emulator DOSBox has no MOVE command. Instead, the REN command can be used to move files.

Syntax

To move one or more files:

MOVE  filename1 destination

To rename a directory:

MOVE  dirname1 dirname2

To move a directory:

MOVE  dirname1 destination

Parameters

  • filename1: Specifies the location and name of the file or files you want to move.
  • destination: Specifies the new location of the file or directory. Destination can consist of a drive letter and colon, a directory name, or a combination, and must already exist. If you are moving only one file, you can also include a filename if you want to rename the file when you move it.
  • dirname1: Specifies the directory you want to rename or move.
  • 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.

Notes

  • When moving a directory, dirname1 and its contents wind up as a subfolder beneath destination. Caution is advised - if the final subfolder of the destination path does not exist, dirname1 will be both moved and renamed.

See also

References

  1. ^ "Move". Microsoft Docs. 11 September 2009. Archived from the original on 2017-08-26. Retrieved 2017-08-26. Microsoft TechNet Move article
  2. ^ MS-DOS and Windows command line move command
  3. ^ "OpenVOS Commands Reference Manual" (PDF). StrataDOC Online Documentation Service for Stratus Products. pp. 2–552, 2–558. Archived from the original (PDF) on 2019-09-22. Retrieved October 1, 2019. move_dir: Purpose: This command moves a directory and its contents from one place to another. ... move_file: Purpose: This command moves a file or set of files to another file or directory.
  4. ^ Jamsa, Kris A. (1993), DOS: The Complete Reference, Osborne McGraw-Hill, p. 206, ISBN 0078819040, archived from the original on 2018-01-25.
  5. ^ "JaTomes Help - OS/2 Commands". www.jatomes.com. Archived from the original on 2019-04-14.
  6. ^ "reactos/move.c at master". GitHub. Archived from the original on 2019-10-01.
  7. ^ Wolverton, Van (2003). Running MS-DOS Version 6.22 (20th Anniversary Edition), 6th Revised edition. Microsoft Press. ISBN 0-7356-1812-7.
  8. ^ ibiblio.org FreeDOS Package -- Move (FreeDOS Base)
  9. ^ "DR DOS 6.0 User Guide Optimisation and Configuration Tips" (PDF). Archived from the original (PDF) on 2019-09-30. Retrieved 2019-08-12.
  10. ^ Commands - DOSBoxWiki

Further reading

External links