다음을 통해 공유


is_other 함수

Indicates whether the specified file_status or file name represents an existing file that is not a regular file, a directory, or a symbolic link.

inline bool is_other(
   file_status Stat
);
template<class Path>
inline bool is_other(
   const Path& Pval
);

매개 변수

  • Stat
    file_status 개체

  • Pval
    Path 개체 Path 는 basic_path 또는 basic_path에서 파생된 형식 중 하나일 수 있습니다.

반환 값

The first function returns exists() && !is_regular_file(Stat) && !is_directory(Stat) && !is_symlink(Stat).

The second function returns is_other(status(Pval)).

요구 사항

헤더: filesystem

Namespace: std::tr2::sys

참고 항목

참조

<filesystem>

file_type 열거형

status 함수

exists 함수

is_regular_file 함수

is_directory 함수

is_symlink 함수

기타 리소스

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