码迷,mamicode.com
首页 >  
搜索关键字:stat结构体    ( 26个结果
struct stat结构体简介
在使用这个结构体和方法时,需要引入:struct stat这个结构体是用来描述一个linux系统文件系统中的文件属性的结构。可以有两种方法来获取一个文件的属性:1、通过路径:int stat(const char *path, struct stat *struct_stat);int lstat(...
分类:其他好文   时间:2015-03-05 12:25:59    阅读次数:159
文件I/O实践(2) --文件stat
功能:获取文件元数据#include #include #include int stat(const char *path, struct stat *buf); int fstat(int fd, struct stat *buf); int lstat(const char *path, struct stat *buf);stat结构体struct stat { dev_t ...
分类:其他好文   时间:2015-02-18 10:44:09    阅读次数:176
Linux服务器开发之:stat(),fstat(),lstat()详细介绍+案例演示
1.依赖的头文件 #include #include #include 2.函数定义: //通过传入文件路径,struct stat结构体指针的方式 int stat(const char *path, struct stat *buf); //通过文件描述符获取文件对应的属性。文件打开后这样操作 int fstat(int fd, struct stat *buf)...
分类:系统相关   时间:2014-09-14 12:52:37    阅读次数:352
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系统编程_3_文件属性
1.Linux中stat结构体包含了一个文件的各种属性。...
分类:系统相关   时间:2014-08-08 18:10:56    阅读次数:305
Linux环境编程之文件I/O(六):文件属性
引言: 在Linux中使用ls -l filename命令查看filename的属性时,会列出文件的9种属性,例如:ls -l /etc/fstab  -rw-r--r-- 1 root root 1102 2013-10-12 02:33 /etc/fstab 从左到右分别是类型与权限、文件个数、该文件或目录的拥有者、所属的组、文件大小、创建时间、文件名 以上这些文件属性的信息...
分类:系统相关   时间:2014-05-13 11:30:43    阅读次数:529
26条   上一页 1 2 3
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!