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;