ifstream

Last-modified: 2007-05-26 (土) 08:17:37
  • 基底クラス
    std::basic_ifstream

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

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

ファイルを開く。

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

void open( const path & file_ph )

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

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