Go to the first, previous, next, last section, table of contents.


fpathconf

Syntax

#include <unistd.h>

long fpathconf(int fd, int name);

Description

Returns configuration information on the filesystem that the open file resides on. See section pathconf. If the filesystem cannot be determined from the file handle fd (e.g., for character devices), fpathconf will return the info for the current drive.

Return Value

The configuration value; for details, see section pathconf.

Portability

not ANSI, POSIX


Go to the first, previous, next, last section, table of contents.