is_block_file
is_block_file (블록 장치 확인)
is_block_file()은 주어진 파일 상태나 경로가 블록 특수 파일(block special file)인지 확인해요.
출처: cppreference
본문
is_block_file은 경로가 블록 장치(예: 디스크 드라이브)를 가리키는지 검사해요.
bool is_block_file( std::filesystem::file_status s ) noexcept;
반환값 (Return value)
블록 특수 파일이면 true, 아니면 false를 돌려줘요.