批处理脚本 - MOVE 命令
此批处理命令在目录之间移动文件或目录。
语法
move [source] [destination]
文件将从源位置复制到目标位置。
示例
以下示例显示了移动命令的不同变体。
@echo off Rem Moves the file list.txt to the directory c:\tp move C:\lists.txt c:\tp Rem Renames directory Dir1 to Dir2, assuming Dir1 is a directory and Dir2 does not exist. move Dir1 Dir2 Rem Moves the file lists.txt to the current directory. move C:\lists.txt
输出
所有操作均按照批处理文件中的备注执行。