Use a string to construct the result you want pass the mkdir().
std::string some_str = "stuff";
std::cout<< std::string("some ") + some_str < "\n";[/code]
If mkdir() expects as C-style string, you'll want to use the c_str() method of the string class.
im not understanding what you mean ?