使用 robocopy 复制文件时出现错误 5 (0x00000005) 创建目标目录

发布于 2024-11-24 05:46:29 字数 73 浏览 1 评论 0原文

我在使用 robocopy 命令时收到上述错误。我已授予源文件夹和目标文件夹所有可能的权限,但仍然收到此错误。知道如何解决这个问题。

I am getting the above error while I am using robocopy command. I have given all possible permissions on both source and destination folders but still I am getting this error. Any idea how to fix this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

红墙和绿瓦 2024-12-01 05:46:29

这是往返ntfs分区吗?

如果您要处理 EXT 的 FAT,则添加 /FFT 参数以假设 FAT 文件时间(2 秒粒度)ext2/ext3 也使用 2 秒粒度。

您还可以尝试使用 /COPY:DT 参数,默认情况下 robocopy 会复制数据、属性和时间戳 /COPY:DT 将跳过属性。

另请检查您的共享权限以及 ntfs 权限

Is this to and from ntfs partitions?

If you are coping to FAT of EXT then add the /FFT parameter to assume FAT file times (2 second granularity) ext2/ext3 also uses 2 second granularity.

You could also try using the /COPY:DT parameter, by default robocopy copies the data, attributes and timestamp /COPY:DT will skip the attributes.

Also check your share permissions as well as your ntfs permissions

溇涏 2024-12-01 05:46:29

对我来说,当我直接在服务器上运行该命令时,它工作得很好,但是当我从 PowerShell 远程处理运行它时,我会收到此错误。我还尝试将文件从本地计算机复制到网络共享。对我来说,解决方法是使用:

Invoke-Command -ComputerName $sourceServer -Credential $credential -Authentication Credssp -ScriptBlock {
    & RoboCopy "C:\Source" "\\OtherServer\C$\Destination" /E
}

具体来说,使用 -Credential $credential -Authentication Credssp 为我解决了这个问题。

您没有提供足够的信息来了解这是否与您遇到的问题相同,但我想我会向遇到相同错误消息的其他人提及它。

For me it worked fine when I ran the command directly on the server, but when I ran it from PowerShell remoting I would get this error. I was also trying to copy files from the local machine to a network share. The fix for me was to use:

Invoke-Command -ComputerName $sourceServer -Credential $credential -Authentication Credssp -ScriptBlock {
    & RoboCopy "C:\Source" "\\OtherServer\C$\Destination" /E
}

Specifically, using -Credential $credential -Authentication Credssp fixed the issue for me.

You didn't provide enough info to know if this is the same issue you were having, but thought I'd mention it for others who encounter the same error message.

末が日狂欢 2024-12-01 05:46:29

这可能是一个简单的答案...检查目标驱动器上的剩余空间。

It may be a simple answer... check the space left on the Target drive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文