다음을 통해 공유


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

참고 항목

참조

<filesystem>

exists 함수

basic_directory_iterator 클래스

file_size 함수

기타 리소스

C++ 표준 라이브러리 헤더 파일