在BT代碼的緩沖管理中經(jīng)常會(huì)看到這函數(shù),功能是移動(dòng)文件的讀寫指針,可以先在Linux的Sheel下看一下他的函數(shù)原型: NAME lseek - reposition read/write file offset SYNOPSIS #include <sys/types.h> #include <unistd.h> off_t lseek(int fd, off_t offset, int whence); DESCRIPTION The lseek() function repositions the offset of the open file associated with the file descriptor fd to the argument offset according to the directive whence as follows: SEEK_SET The offset is set to offset bytes. SEEK_CUR The offset is set to its current location plus offset bytes. SEEK_END 參數(shù)說(shuō)明: fd為已打開(kāi)的文件描述符; off_t_offset為偏移量,它是根據(jù)下面的whence的取值; whence有3種取值: SEEK_SET 將讀寫位置指向文件頭后增加offset個(gè)位移量; SEEK_CUR 以目前的讀寫位置往后增加offset個(gè)位移量; SEEK_END 將讀寫位置指向文件尾后增加offset個(gè)位移量; 但是有時(shí)候,在舊的代碼中可能看到不是SEEK_XXX這樣的參數(shù),這是由于新舊值的原因,下面是他們的對(duì)應(yīng)關(guān)系: 舊值 新值 0 SEEK_SET 1 SEEK_CUR 2 SEEK_END L_SET SEEK_SET L_INCR SEEK_CUR L_XTND SEEK_END 作者:阿吳網(wǎng)志 2009-11-23 |