fclose
int
fclose は、取り消し不可能、照会不可能、および編集不可能です。
このコマンドは、すべてのファイルの入出力が完了した後に、fopen によって返されたファイル識別子を使ってコールする必要があります。int |
// Write some data to a file and then close it // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName "w"`; fprint $fileId "Hello there\n"; fclose $fileId;