Namespaces
Variants

std::filesystem::directory_entry:: operator=

From cppreference.net
directory_entry & operator = ( const directory_entry & other ) = default ;
(1) (C++17부터)
directory_entry & operator = ( directory_entry && other ) noexcept = default ;
(2) (C++17부터)

디렉토리 엔트리(경로와 캐시된 속성, 존재하는 경우)의 내용을 other 의 내용으로 대체합니다.

directory_entry 에 대한 복사 할당 연산자와 이동 할당 연산자는 모두 기본 설정됩니다.

목차

매개변수

기타 - 기타 directory_entry

반환값

* this

예제

참고 항목

내용 할당
(public member function)