inode
每个inode保存了文件系统中的一个文件系统对象(包括文件、目录、设备文件、socket、管道, 等等)的元信息数据,但不包括数据内容或者文件名
ftell
Get current position in stream
long int ftell ( FILE * stream );
rewind
Set position of stream to the beginning
void rewind ( FILE * stream );
fseek
Reposition stream position indicator
void rewind ( FILE * stream );
原文:http://www.cnblogs.com/qianyanglinux/p/4365393.html