创建与输入同名的文件

发布于 2024-11-17 17:25:06 字数 493 浏览 2 评论 0原文

cout << "Enter your full name";
char* name ;

cin >> name;
  if( _mkdir("c:\\names") == 0 ) {
     cout << "directory successfully created";
  }  else {
       cout << "there was a problem creating a directory";
     }

现在我想在目录names中创建一个文件(.txt文件),其名称与用户的名称相同。我的意思是用户在 cin >> 期间输入的名称。名称;

我该怎么做?

ofstream writeName("c:/names/??????); ----> 问题

cout << "Enter your full name";
char* name ;

cin >> name;
  if( _mkdir("c:\\names") == 0 ) {
     cout << "directory successfully created";
  }  else {
       cout << "there was a problem creating a directory";
     }

Now i want to create a file ( a .txt file ) in the directory names with the same name as the name of the user. I mean the name which the user entered during cin >> name;.

How can i do this ?

ofstream writeName( "c:/names/????); ----> PROBLEM

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苍暮颜 2024-11-24 17:25:06

使用 std::string 而不是 char*。因为您的代码具有未定义的行为。使用 std::getline 而不是 >>。对于>>,仅输入第一个以空格分隔的“单词”。然后,在 std::string 中编写完整路径。标准字符串类支持连接,所以这应该很容易。

比如说,如果该字符串是 path

std::ofstream f( path.c_str() );

Cheers &呵呵,

Use std::string instead of char*. As it is your code has Undefined Behavior. Use std::getline instead of >>. With >> only the first whitespace-separated "word" is input. Then, compose the full path in a std::string. The standard string class supports concatenation, so this should be easy.

Say, if that string is path,

std::ofstream f( path.c_str() );

Cheers & hth.,

晚雾 2024-11-24 17:25:06

您可以通过 fopen 文件或使用 ofstream 创建文本文件。

但是您输入 name 的方式似乎是错误的。您没有为name分配空间。尝试使用 mallocnew

You can create a text file by fopen ing the file or with ofstream.

But your way of taking input for name seems wrong. You didn't allocate space for name. Try using malloc or new

吃颗糖壮壮胆 2024-11-24 17:25:06

char* 指向一个字符。由于它没有初始化,所以它指向涅槃-> 未定义的行为

您可以尝试使用字符名称[MAX_LENGTH_FOR_YOUR_NAME]。最好在这里使用 std::string name

The char* points to one char. Since it is not initialized it points to nirvana -> undefined bahavior.

You can try to use char name[MAX_LENGTH_FOR_YOUR_NAME]. It's better to use a std::string name here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文