gpt4 book ai didi

c++ - MoveFileEx - 返回 GetLastError() : 17

转载 作者:太空狗 更新时间:2023-10-29 23:33:07 24 4
gpt4 key购买 nike

我正在使用 MoveFileEx 移动文件。根据用户输入的内容,文件移动的位置可能位于单独的硬盘驱动器上。在这种情况下,MoveFileEx 失败,GetLastError 报告错误 ID 17,即:

ERROR_NOT_SAME_DEVICE 17 (0x11) The system cannot move the file to a different disk drive. (http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx)

那么,在 VC++ 中,我将如何处理这种情况并移动文件,即使它位于单独的硬盘驱动器上?

我使用的代码在这里:https://gist.github.com/Whitetigerswt/9180030 (虽然我认为这无关紧要,但一切都很好,除非将文件移动到另一个硬盘驱动器。)

最佳答案

MoveFileEx 的文档明确这一点:

When moving a file, the destination can be on a different file system or volume. If the destination is on another drive, you must set the MOVEFILE_COPY_ALLOWED flag in dwFlags.

因此,如果源驱动器与目标驱动器不同,只需将 MOVEFILE_COPY_ALLOWED 标志放入 dwFlags

关于c++ - MoveFileEx - 返回 GetLastError() : 17,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21977090/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com