文件名称:移动文件指针-UNIX初级教程
文件大小:1.01MB
文件格式:PPT
更新时间:2024-05-12 12:27:16
UNIX
移动文件指针 移动文件指针: off_t lseek(int fd, off_t offset, int whence); 文件读写指针设置为(whence,offset)指定的位置,返回新指针值。 whence: 起点 0: 文件头 1: 当前文件读写指针所在位移 2: 文件尾 offset:位移量 文件读写指针的缺省值:读写打开时为0,附加写打开时为文件尾。 f_offset(文件指针) whence = 0 whence = 1 whence = 2 offset offset offset 文件尾 文件头