frewind
int
frewind は 「元に戻す」が不可能、「照会」が不可能、「編集」が不可能 です。
ファイルを最初のバイトまで巻き戻します。int |
// Make a sample file to use as a test example // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName "w"`; fprint $fileId "Hello there\n"; fclose $fileId; // Read the first word out of the file, then rewind and read it again // $fileId=`fopen $exampleFileName "r"`; print ( `fgetword $fileId` + "\n" ); frewind $fileId; print ( `fgetword $fileId` + "\n" ); fclose $fileId;