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;