本文介绍了named()返回-1.如何知道为什么重命名失败?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用c ++ stdio.h的
I am using c++ stdio.h's
int rename ( const char * oldname, const char * newname );
rename()函数可重命名文件夹,但有时无法重命名该文件夹并返回-1.
rename() function to rename a folder but occasionally it fails to rename the folder and returns -1.
有什么办法知道为什么rename()失败吗?
通过任何c ++函数以任何方式了解此错误说明.
Is there any way to know why is rename() failing?
any way to know this error explanation via any c++ function.
推荐答案
应该可以从errno.h中获取具体错误
It should be possible to get the concrete error from errno.h
#include <errno.h>
#include <string.h>
...
if(rename("old","new") == -1)
{
std::cout << "Error: " << strerror(errno) << std::endl;
}
rename
的errno
错误代码是特定于操作系统的:
The errno
error codes for rename
are OS-specific:
- Linux错误代码
- Windows错误代码(使用
_errno
代替errno
)
- Linux error codes
- Windows error codes (use
_errno
instead oferrno
)
这篇关于named()返回-1.如何知道为什么重命名失败?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!