码迷,mamicode.com
首页 >  
搜索关键字:lstat    ( 313个结果
APUE学习笔记——4.2结构体 struct stat 及其相关函数介绍
以下不少内容来自man手册 结构体struct stat         结构体struct stat用于保存文件相关的所有信息。         struct stat的基本成员如下所示 struct stat { dev_t st_dev; // 文件所在设备的设备id,可以分解为主设备号和此设备号 ...
分类:其他好文   时间:2014-09-10 12:34:00    阅读次数:269
Linux系统编程之访问文件夹及其文件属性
1. 文件夹操作:opendir, readdir, closedir 2. 文件属性:lstat 代码示例如下 实现功能:获取指定文件夹下所有的文件(使用递归),因此就能计算所有文件大小之类的啦。。。 #include #include #include #include #include #include #include #include #define BUF_...
分类:系统相关   时间:2014-08-19 20:51:05    阅读次数:350
APUE学习笔记:第四章 文件和目录
4.1 引言本章将描述文件的特征和文件的性质4.2 stat、fstat和lstat函数#includeint stat(const char *restrict pathname,struct stat *restrict buf);int fstat(int filedes,struct sta...
分类:其他好文   时间:2014-07-13 20:36:36    阅读次数:283
313条   上一页 1 ... 30 31 32
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!