0

所以我正在尝试读取我的应用程序内容文件夹中的文件中的内容:

std::string username;
std::ifstream user("../Resources/username.txt");
user >> username;
user.close(); /*here I do a breakpoint to check the value of username and it's ""*/

我做了一个“if”来检查文件是否打开,这显然是不可能的。你告诉我我做错了什么(我知道文件路径和它的名字是正确的我使用了类似的过程来上传图片和 SDL2 等)

4

1 回答 1

0

尝试这个:

std::string username;
std::ifstream user("C://test.txt", std::ifstream::in);

user >> username;

user.close(); /*here I do a breakpoint to check the value of username and it's ""*/
于 2013-11-12T05:09:21.567 回答