Linux系统对文件描述符的几种操作

通过文件描述符获得文件状态
函数:fstat()
头文件 #include
#include
定义函数 int fstat(int fildes,struct stat *buf);
函数说明 fstat()用来将参数fildes所指的文件状态,复制到参数buf所指的

通过文件描述符设置文件大小
函数:ftruncate()
表头文件 #include
定义函数 int ftruncate(int fd,off_t length);
函数说明
ftruncate()会将参数fd指定的文件大小改为参数length指定的大小。
参数fd为已打开的文件描述词,而且必须是以写入模式打开的文件。
如果原来的文件大小比参数length大,则超过的部分会被删去

通过文件文件描述符移动文件指针
函数:fseek()
头文件:#include  #include 
用 法: off_t lseek(int handle, off_t offset, int fromwhere);



你可能感兴趣的:(linux开发)