fpathconf, pathconf
get configuration values for files
- Provided by: manpages-dev (Version: 4.04-2)
- Source: manpages
- Report a bug
get configuration values for files
#include <unistd.h> long fpathconf(int fd, int name); long pathconf(const char *path, int name);
fpathconf() gets a value for the configuration option name for the open file descriptor fd.
pathconf() gets a value for configuration option name for the filename path.
The corresponding macros defined in <unistd.h> are minimum values; if an application wants to take advantage of values which may change, a call to fpathconf() or pathconf() can be made, which may yield more liberal results.
Setting name equal to one of the following constants returns the following configuration options:
The limit is returned, if one exists. If the system does not have a limit for the requested resource, -1 is returned, and errno is unchanged. If there is an error, -1 is returned, and errno is set to reflect the nature of the error.
For an explanation of the terms used in this section, see attributes(7).
| Interface | Attribute | Value |
| fpathconf (), pathconf () | Thread safety | MT-Safe |
POSIX.1-2001, POSIX.1-2008.
Files with name lengths longer than the value returned for name equal to _PC_NAME_MAX may exist in the given directory.
Some returned values may be huge; they are not suitable for allocating memory.
This page is part of release 4.04 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at http://www.kernel.org/doc/man-pages/.