摘要:
【fstatfs/statfs系统调用】 功能描述: 查询文件系统相关的信息。 用法: #include /* 或者 */int statfs(const char *path, struct statfs *buf);int fstatfs(int fd, struct statfs *buf); 参数: path: 位于需要查询信息的文件系统的文件路径名。 fd: 位于需要查询信息的文件系统的文件描述词。buf:以下结构体的指针变量,用于储存文件系统相关的信息struct statfs { long f_type; /* 文件系统类型 */ long f_bsize; /* 经过优化... 阅读全文