Boost C++ Libraries

PrevUpHomeNext

Function is_other

boost::filesystem::is_other

Synopsis

// In header: <boost/filesystem/file_status.hpp>


bool is_other(file_status f);

Description

Returns:

exists(f) && !is_regular_file(f) && !is_directory(f) && !is_symlink(f).


PrevUpHomeNext