// libs/filesystem/test/convenience_test.cpp -------------------------------// // (C) Copyright Beman Dawes, 2002 // (C) Copyright Vladimir Prus, 2002 // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // See http://www.boost.org/libs/filesystem for documentation. #include namespace fs = boost::filesystem; using fs::path; #include int test_main( int, char*[] ) { // create_directories() tests ----------------------------------------------// fs::create_directories( "" ); // should be harmless fs::create_directories( "/" ); // ditto fs::remove_all( "xx/yy/zz" ); // make sure slate is blank fs::create_directories( "xx" ); BOOST_TEST( fs::exists( "xx" ) ); BOOST_TEST( fs::is_directory( "xx" ) ); fs::create_directories( "xx/ww/zz" ); BOOST_TEST( fs::exists( "xx" ) ); BOOST_TEST( fs::exists( "xx/ww" ) ); BOOST_TEST( fs::exists( "xx/ww/zz" ) ); BOOST_TEST( fs::is_directory( "xx" ) ); BOOST_TEST( fs::is_directory( "xx/ww" ) ); BOOST_TEST( fs::is_directory( "xx/ww/zz" ) ); return 0; }