10 Jan
2005
10 Jan
'05
12:42 a.m.
At 06:46 PM 1/9/2005, GIE wrote:
how to i append directory containing space char?
following test failes. boost::filesystem::path p; p/="test 1";
Change the last line to: p/=boost::filesystem::path( "test 1", boost::filesystem::native ); or p/=boost::filesystem::path( "test 1", boost::filesystem::no_check ); --Beman