realpath

http://baike.baidu.com/link?url=RX7Z4eUJew3Zmt6OozkqLyk7lc80SVHeUqOKKdiSdk7yRa3IUIYZ4yxg4EZOPok91YME55xYRFdOFeW1w4tS8q

相关函数: readlink, getcwd
表头文件: #include
#include
函数原型:char *realpath(const char *path, char *resolved_path)
函数说明:realpath()用来将参数path所指的 相对路径转换成 绝对路径后存于参数resolved_path所指的字符串 数组或 指针中
返回值: 成功则返回指向resolved_path的指针,失败返回NULL,错误代码存于errno
范例:
#include
main()
{
char resolved_path[80];
realpath("/usr/X11R6/lib/modules/../../include/../",resolved_path);
printf("resolved_path: %s\n", resolved_path);
}

你可能感兴趣的:(realpath)