is_basic_path Structure

Specifies whether a type is suitable for use as a Path parameter for other templates that are defined in the <filesystem> header.

template<class Path>
struct is_basic_path : false_type;

Remarks

By default, is_basic_path is derived from false_type, which indicates that the specified type is not suitable for use as a Path parameter.

This implementation defines specializations for path and wpath that are derived from true_type. These specializations are suitable for use as a Path parameter. For more information, see <filesystem>.

Requirements

Header: filesystem

Namespace: std::tr2::sys

See Also

Reference

<filesystem>

Other Resources

C++ Standard Library Header Files