C 庫函數(shù) void rewind(FILE *stream) 設(shè)置文件位置為給定流 stream 的文件的開頭。
下面是 rewind() 函數(shù)的聲明。
void rewind(FILE *stream)
該函數(shù)不返回任何值。
下面的示例演示了 rewind() 函數(shù)的用法。
#include <stdio.h> int main() { char str[] = "This is (cainiaoplus.com)"; FILE *fp; int ch; /* 首先讓我們在文件中寫入一些內(nèi)容 */ fp = fopen( "file.txt" , "w" ); fwrite(str , 1 , sizeof(str) , fp ); fclose(fp); fp = fopen( "file.txt" , "r" ); while(1) { ch = fgetc(fp); if( feof(fp) ) { break ; } printf("%c", ch); } rewind(fp); printf("\n"); while(1) { ch = fgetc(fp); if( feof(fp) ) { break ; } printf("%c", ch); } fclose(fp); return(0); }
假設(shè)我們有一個(gè)文本文件 file.txt,它的內(nèi)容如下:
This is (cainiaoplus.com)
讓我們編譯并運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:
This is (cainiaoplus.com) This is (cainiaoplus.com)