int FileTell( int handle)
返回文件指针的当前位置。获得详细的错误信息,查看GetLastError() 函数。
参数:
handle - 用 FileOpen()函数返回的句柄。
示例:
- int handle;
- int pos;
- handle=FileOpen("my_table.dat", FILE_BIN|FILE_READ);
- // 读取数据
- pos=FileTell(handle);
- Print("current position is ", pos);
复制代码
|