is_other

is_other (기타 파일 확인)

is_other()은 주어진 파일 상태나 경로가 그 외의 타입(other type) 파일인지 확인해요. 즉 인식되지 않는 파일 타입인지 검사해요.

출처: cppreference

본문

is_other는 파일이 일반 파일, 디렉터리, 심볼릭 링크가 아닌 기타 타입인지 검사해요. !is_regular_file && !is_directory && !is_symlink와 같은 의미예요.

bool is_other( std::filesystem::file_status s ) noexcept;

반환값 (Return value)

기타 타입이면 true, 아니면 false를 돌려줘요.

더 알아보기 (Learn more)

cppreference