基本介紹
- 中文名:realpath
- 相關函式:readlink, getcwd
- 表頭檔案:#include
- 返回值:失敗返回NULL
函式原型,返回值,範例,
函式原型
char *realpath(const char *path, char *resolved_path)
返回值
成功則返回指向resolved_path的指針,失敗返回NULL,錯誤代碼存於errno
範例
#include <unistd.h>
main()
{
char resolved_path[80];
realpath("/usr/X11R6/lib/modules/../../include/../",resolved_path);
printf("resolved_path: %s\n", resolved_path);
}