使用cmd移动文件? [已关闭]

问题描述 投票:0回答:2

我有一个从 Google 下载的文件(位于下载文件夹内),我想将其移动到自动运行文件夹(计算机打开时运行文件的文件夹)。

我需要使用cmd命令移动文件。原因是要使用 USB 橡皮鸭来完成。我正在使用 Windows 10 64 位,如果有帮助的话。

文件所在路径

C:\Users\%USERPROFILE%\Downloads\Test.exe

我想将其移动到的路径是

C:\Users\%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

之所以使用

%USERPROFILE%
,是因为它应该适用于所有计算机。

windows batch-file cmd
2个回答
46
投票

要移动文件,请使用

move
命令。

move "%USERPROFILE%\Downloads\Test.exe" "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"

我在源和目标周围加了引号,以防您是由于某种原因在用户名中包含空格的人之一(并且目标无论如何都需要它们来表示“开始菜单”中的空格)。

move /?
的输出:

Moves files and renames files and directories.

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

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

-3
投票

要移动文件,请使用 mv,但如果不使用管理员,则无法工作,如何破解,请尝试 Windows 的超级用户工具!

© www.soinside.com 2019 - 2024. All rights reserved.