
23 Aug
2010
23 Aug
'10
11:27 p.m.
On Mon, Aug 23, 2010 at 12:03 PM, Jochen Wilhelmy <j.wilhelmy@arcor.de>wrote:
Hi!
for boost::filesystem::path I would suggest an operator + that works like the following fs::path("foo") + "bar" -> "foobar"
fs::path(foo_path.string()+"bar");
fs::path("foo") + "/bar" -> "foo/bar"
Isn't foo_path / "bar" better?