-1

有没有办法将字符串变量插入 CreateDirectory?我希望它使用用户输入的名称在 C: 中创建一个目录。当我做类似的事情时

CreateDirectory ("C:\\" << newname, NULL); 

我的编译器给了我错误“'C:\ << newname'中的运算符<<不匹配”

这是我的代码。问题出在 void newgame() 中。

#include <iostream>
#include <fstream>
#include <string>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <mmsystem.h>
#include <conio.h>


using namespace std;

int a;
string newname;

string savepath;

struct game
{
    string name;
    int checkpoint;
    int level;
};

void wait( time_t delay )
{
time_t timer0, timer1;
time( &timer0 );
do {
time( &timer1 );
} while (( timer1 - timer0 ) < delay );
}

void error()
{
    cout << "\nError, bad input." << endl;
}
void options()
{
    cout << "No options are currently implemented." << endl;
}
void load()
{
    cout << "Load a Game:\n";
}
//This is where I'm talking about.
void newgame()
{
    cout << "Name your Game:\n";
    getline(cin,newname);
    cin.get();
    game g1;
    g1.name=newname;
    //I want it to create a dir in C: with the name the user has entered.
    //How can I do it?
    CreateDirectory ("C:\\" << newname, NULL);


}
//This isn't the whole piece of code, just most of it, I can post the rest if needed
4

2 回答 2

3
CreateDirectory (("C:\\" + newname).c_str(), NULL);

您可以将std::strings 与operator+. 或者,在您的情况下,您也可以将 C 字符串连接到std::stringusing operator+。结果是一个std::string. (不过要小心——你不能用这种方式将两个 C 字符串连接在一起。)

但是,我怀疑这CreateDirectory需要一个 C 字符串,而不是 a std::string,因此您需要将其与.c_str()成员一起转换。

于 2012-05-07T15:11:33.153 回答
0

要使用流插入,您需要首先创建一个流:

std::ostringstream buffer;

buffer << "c:\\" << newname;

CreateDirectory(buffer.str().c_str());
于 2012-05-07T15:12:29.453 回答