MoveFileEx 问题
int i ;
DWORD dw ;
String^ Source = "c:\\Program\\test.exe" ;
String^ Destination = "c:\\Program Files" ; // move to program Files Folder
//pin_ptr<const wchar_t> WSource = PtrToStringChars(Source);
// pin_ptr<const wchar_t> WDestination = PtrToStringChars(Destination);
i = MoveFileEx(L"c:\\Program Files\\Program\\Test.exe",L"c:\\Program Files",MOVEFILE_REPLACE_EXISTING) ;
dw = GetLastError() ;
return 0;
当我运行程序时,状态 dw 的值为 5 。
错误是什么
int i ;
DWORD dw ;
String^ Source = "c:\\Program\\test.exe" ;
String^ Destination = "c:\\Program Files" ; // move to program Files Folder
//pin_ptr<const wchar_t> WSource = PtrToStringChars(Source);
// pin_ptr<const wchar_t> WDestination = PtrToStringChars(Destination);
i = MoveFileEx(L"c:\\Program Files\\Program\\Test.exe",L"c:\\Program Files",MOVEFILE_REPLACE_EXISTING) ;
dw = GetLastError() ;
return 0;
The status dw is valued as 5 , when i run the program.
Whats the error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
输入命令提示符net helpmsg 5。这将向您显示错误的含义。
在我的系统中,它是:“访问被拒绝。”。
只是提示:为什么第二个参数不是文件路径?
Type in command prompt net helpmsg 5. This will show you the meaning of the error.
In my system it is: "Access is denied.".
Just a hint: why second parameter is not a file path?
错误代码 5 表示访问被拒绝。请检查您是否对目标目录有足够的权限。
MOVEFILE_REPLACE_EXISTING
-- 如果 lpNewFileName 或 lpExistingFileName 命名目录,则不能使用该值。在您的情况下,目标是“C:\Program files”目录。所以它失败了。
Error code 5 is Access Denied. Please check if you have enough permissions for destination directory.
MOVEFILE_REPLACE_EXISTING
-- This value cannot be used if lpNewFileName or lpExistingFileName names a directory.In your case the destination is "C:\Program files" a directory. So it fails.
错误 5 表示访问被拒绝。 可能会出现此错误(
我认为你处于第二种情况:你要覆盖的文件被锁定。这是一个可执行文件,它可能正在运行。
Error 5 is Access Denied. This error may occur if
I think you are in the second case: the file you want to overwrite is locked. This it is an executable, it may be running.