...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
path
// In header: <boost/dll/config.hpp> typedef std::conditional_t< BOOST_DLL_USE_STD_FS, std::filesystem::path, boost::filesystem::path > path;
Alias to std::filesystem::path
if BOOST_DLL_USE_STD_FS is defined by user. Alias to boost::filesystem::path
otherwise.