12

Hi there i'm using the windows 7 'move' command like so:

move /Y "C:\old.sub.folder\folder.i.want.to.move" "F:\new.sub.folder\folder.i.want.to.move"

and i keep getting an 'accessed denied' error yet i have full permissions and the folder i'm trying to move isn't open or being uses?

a random example trying to move one empty folder to another: http://puu.sh/2Rx6b.png

any ideas?

thanks

4

3 回答 3

15

或者您可以尝试robocopy使用/MOVE参数:

robocopy C:\old\folder F:\new\folder /E /MOVE
于 2016-05-05T09:30:13.490 回答
6

语法是:

MOVE [/Y| /-Y] [Drive:][Path]Folder1 Folder2

这意味着,您可以重命名一个文件夹,但不能将内容“移动”到另一个驱动器。

恐怕,您必须将源文件夹复制到目标文件夹(xcopy),然后删除源文件夹

于 2013-05-12T11:26:11.177 回答
-1

任何访问相关问题的最佳方法是:添加一个新的主体“每个人”,提供完全访问权限,然后启用继承。卡布姆!!!所有访问问题都已解决/。

脚步:

  1. 转到文件属性 > 安全选项卡 > 高级按钮。
  2. 在权限选项卡下>添加>选择一个主体>键入“每个人”>单击“检查名称”按钮>将识别写在对象名称上的每个人>单击“确定”。请附上以下参考, 在此处输入图像描述
  3. 选择所有“基本权限”
  4. 点击“确定”
  5. 在“高级安全设置>权限”中选择“启用继承”
于 2021-07-05T07:47:36.863 回答