在c ++中打开txt.file

时间:2014-08-31 18:11:01

标签: c++ ifstream

我正在尝试在c ++(visual studio)中打开一个简单的txt.file,但只是触发“else”。 codes.txt与源文件中的主文件一起包含在内。这或多或少看起来像

#include <iostream>
#include <fstream>

int main()
{
  std::ifstream file("codes.txt");
  if (file.is_open())
  { 
    std::cout << "success" << std::endl;
  }
  else 
  {
    std::cout << "Unable to open file" << std::endl;
  }
}

1 个答案:

答案 0 :(得分:0)

程序文件夹中不存在txt文件。它被包括在内后完美运行。