fopen
[string] string
fopen は、取り消し不可能、照会不可能、および編集不可能です。
このコマンドは、既定では書き込み用のファイルを開き、ファイル識別子を返します。 オプションのモード文字列は次のいずれかになります。int | ファイル ID |
// Open a file for writing, the default behavior of the command // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName`; fprint $fileId "Hello there\n"; fclose $fileId; // OR // Do the same as above, but include the "w" argument to explicitly // say that we wish to open the file for writing // $exampleFileName = ( `internalVar -userTmpDir` + "example.tmp" ); $fileId=`fopen $exampleFileName "w"`; fprint $fileId "Hello there\n"; fclose $fileId;