ofstream

Last-modified: 2007-05-26 (土) 08:21:56
  • 基底クラス
    std::basic_ofstream

filesystem::ofstream は、ファイルの出力ストリームを扱う。

void open( const path & file_ph, std::ios_base::openmode mode )

ファイルを開く。

  • 引数
    • file_ph ファイルのパス
    • mode 開くモード。

void open( const path & file_ph )

モードを std::ios_base::out としてファイルを開く。

  • 引数
    • file_ph ファイルのパス。