is_empty
is_empty (비어 있는지 확인)
is_empty()는 주어진 경로가 빈 파일 또는 빈 디렉터리인지 확인해요.
출처: cppreference
본문
is_empty는 경로가 빈 파일(크기 0)이거나 빈 디렉터리인지 검사해요.
bool is_empty( const std::filesystem::path& p );
반환값 (Return value)
빈 파일이나 빈 디렉터리면 true, 아니면 false를 돌려줘요.