Я получаю путь к текущему каталогу с файловой системой boost, затем проверяю, существует ли каталог.
is_directory()
в порядке, но exists()
не удается по тому же пути, я что-то упустил?
Пример кода (повышение 1.35):
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/path.hpp>
namespace fs = boost::filesystem;
// the path is full path /home/my/somedirectory
fs::path data_dir(fs::current_path());
fs::is_directory(data_dir) // true, directory exists
fs::exists(data_dir) // false
exists(status(data_dir)) // false
EDIT:
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/path.hpp>
namespace fs = boost::filesystem;
fs::path data_dir(fs::current_path());
// data_dir == "/home/myusername/proj/test"
if (fs::is_directory(data_dir)) // true - is directory
if (fs::is_directory(fs::status(data_dir))) // true - it is still a directory
Прикольная часть:
if (fs::exists(fs::status(data_dir))) // true - directory exists
if (fs::exists( data_dir )) // true - directory exists
НО:
if (!fs::exists(fs::status(data_dir))) // false - directory still exists
if (!fs::exists( data_dir )) // true - directory does not exists