函數(shù)名:tell
頭文件:<io.h>
函數(shù)原型: int tell(int handle);
功能:獲取打開文件的指針位置
參數(shù):int handle 為要獲取文件指針的文件句柄
返回值: 成功 返回給定文件的文件指針的位置 ,失敗 返回-1
程序例:創(chuàng)建文件,內(nèi)容為I like www.sztianhecheng.cn very much!
//打開文件,移動(dòng)七個(gè)字節(jié),獲取當(dāng)前指針位置 #include<stdio.h> #include<io.h> #include<fcntl.h> int main(void){ int fd=open("D:\\a.txt",O_RDONLY); if(fd==-1){ printf("can not open the file\n"); return 1; } int pos=tell(fd); printf("before lseek function,current position: %ld\n",pos); lseek(fd,7,SEEK_SET); //移動(dòng)到以文件的開頭偏移7個(gè)字節(jié)的位置 pos=tell(fd); printf("after lseek function,current position: %ld\n",pos); close(fd); return 0; }
運(yùn)行結(jié)果
before lseek function,current position: 0 after lseek function,current position: 7
C語言網(wǎng)提供由在職研發(fā)工程師或ACM藍(lán)橋杯競賽優(yōu)秀選手錄制的視頻教程,并配有習(xí)題和答疑,點(diǎn)擊了解:
一點(diǎn)編程也不會(huì)寫的:零基礎(chǔ)C語言學(xué)練課程
解決困擾你多年的C語言疑難雜癥特性的C語言進(jìn)階課程
從零到寫出一個(gè)爬蟲的Python編程課程
只會(huì)語法寫不出代碼?手把手帶你寫100個(gè)編程真題的編程百練課程
信息學(xué)奧賽或C++選手的 必學(xué)C++課程
藍(lán)橋杯ACM、信息學(xué)奧賽的必學(xué)課程:算法競賽課入門課程
手把手講解近五年真題的藍(lán)橋杯輔導(dǎo)課程