一、介绍
pathconf()和fpathconf()都是程序运行时候获取文件相关的限制。两者不同的点在于pathconf采用路径名方式来指定,fpathconf采用文件描述符。
#include <unistd.h>
long fpathconf(int fd, int name);
参数:
fd: 打开的文件描述符
name: 资源名称 _PC_XXX 系列常量
long pathconf(const char *path, int name);
参数:
path: 路径名
name: 资源名称 _PC_XXX 系列常量
共同返回值:
如果存在限制,则返回该限制。 如果系统对请求的资源没有限制,则返回-1,并且errno不变。
如果存在错误,则返回-1,并且将errno设置为反映错误的性质。