is_regular_file Function
Indicates whether the specified file_status or file name represents a regular file.
inline bool is_regular_file(
file_status Stat
);
template<class Path>
inline bool is_regular_file(
const Path& Pval
);
Parameters
Stat
A file_status object.Pval
A Path object. Path can be either a basic_path or a type that's derived from basic_path.
Return Value
The first function returns Stat.type() == regular_file. The second function returns is_regular_file(status(Pval)).
Requirements
Header: filesystem
Namespace: std::tr2::sys