使用cmd移动文件?

时间:2017-04-04 20:20:58

标签: batch-file cmd window

我有一个我从谷歌下载的文件(它在下载文件夹中) 我想将它移动到autorun文件夹(计算机打开时文件运行的文件夹)。

我需要使用cmd命令移动文件(原因是它将使用USB橡皮鸭进行。 如果有任何帮助,我正在使用Windows 10 64位。

文件的路径

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

和我要移动的路径是

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

%USERPROFILE%之所以它应该适用于所有计算机。

3 个答案:

答案 0 :(得分:5)

要移动文件,请使用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.

答案 1 :(得分:0)

尝试使用%username%代替%userprofile%

答案 2 :(得分:-2)

要移动文件使用mv,但如果不使用admin,则无法正常工作,如何破解,请尝试使用windows的超级用户工具!