is_empty 함수
Indicates whether a specified path refers to an empty file or empty directory.
template<class Path>
inline bool is_empty(
const Path& Pval
);
매개 변수
- Pval
Path 개체 Path 는 basic_path 또는 basic_path에서 파생된 형식 중 하나일 수 있습니다.
반환 값
If Pval refers to an existing directory, the function returns basic_directory_iterator<Path>(Pval) == basic_directory_iterator<Path>().
If Pval refers to an existing file, the function returns file_size(Pval) == 0.
설명
If Pval refers to a path that does not exist, the function throws a basic_filesystem_error.
요구 사항
헤더: filesystem
네임스페이스: std::tr2::sys