#include #include #include #include int main() { if (boot::filesystem::exists("test/") ) { std::cout << "This directory already exist!" << std::endl; } else { std::cout << "Directory not found..." << std::endl; } return 0; }