I have a certain boost::filesystem::path in hand and I\'d like to append a string (or path) to it.
boost::filesystem::path
boost::filesystem::path p(\"c:\\\\dir\"); p.appen
With Version 3 of Filesytem library (Boost 1.55.0) it's as easy as just
boost::filesystem::path p("one_path"); p += "_and_another_one";
resulting in p = "one_path_and_another_one".
p = "one_path_and_another_one"