gpt4 book ai didi

c++ - 无法在 C++ 中创建文本文件

转载 作者:行者123 更新时间:2023-11-30 05:19:59 26 4
gpt4 key购买 nike

我正在使用 ofstream 对象来创建字符串并将其打印到文本文件,但它不起作用。这是我的代码:

#include <iostream>
#include <fstream>
using namesace std;
int main()
{
ofstream output("d:\\data.txt");
output << "this is my text" << endl;
output.close();
return 0;
}

文件 data.txt 是在我设置 output("data.txt") 时创建的。文本文件是在包含源代码的同一文件夹中创建的。但是当我设置 output(d:\\data.txt) 或任何其他位置时,它根本没有创建。此代码在其他计算机上也运行良好,问题仅出现在我的笔记本电脑上。我正在使用 visual stdio 2013 并由Windows 10 专业版。

最佳答案

尝试在 d:\\ 中手动创建一个文件,然后从文件的属性中获取完整、正确 的文件目录。这样,您就会知道在指定要创建的文件的目录时所犯的任何错误。

关于c++ - 无法在 C++ 中创建文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40881667/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com