Scroll to navigation

CANONICALIZE_FILE_NAME(3) Linux Programmer's Manual CANONICALIZE_FILE_NAME(3)

名前

canonicalize_file_name - 正規化された絶対パス名を返す

書式

#define _GNU_SOURCE /* feature_test_macros(7) 参照 */
#include <stdlib.h>

char *canonicalize_file_name(const char *path);

説明

The canonicalize_file_name() function returns a null-terminated string containing the canonicalized absolute pathname corresponding to path. In the returned string, symbolic links are resolved, as are . and .. pathname components. Consecutive slash (/) characters are replaced by a single slash.

The returned string is dynamically allocated by canonicalize_file_name() and the caller should deallocate it with free(3) when it is no longer required.

canonicalize_file_name(path) は以下と等価である。


realpath(path, NULL);

準拠

この関数は GNU による拡張である。

返り値

On success, canonicalize_file_name() returns a null-terminated string. On error (e.g., a pathname component is unreadable or does not exist), canonicalize_file_name() returns NULL and sets errno to indicate the error.

エラー

realpath(3) 参照。

関連項目

readlink(2), realpath(3)

この文書について

この man ページは Linux man-pages プロジェクトのリリース 3.51 の一部 である。プロジェクトの説明とバグ報告に関する情報は http://www.kernel.org/doc/man-pages/ に書かれている。

2013-03-10 GNU