Namespaces
Variants

std::experimental::filesystem::path:: remove_filename

From cppreference.net
path & remove_filename ( )
(1) (filesystem TS)

단일 파일명 구성요소를 제거합니다.

경로에 파일명 구성 요소가 없는 경우 동작은 정의되지 않습니다 ( has_filename false 를 반환하는 경우).

목차

매개변수

(없음)

반환값

* this

예외

구현 정의 예외를 던질 수 있습니다.

예제

#include <experimental/filesystem>
#include <iostream>
namespace fs = std::experimental::filesystem;
int main()
{
    std::cout << fs::path("/foo").remove_filename() << '\n'
              << fs::path("/").remove_filename() << '\n';
}

출력:

"/"
""

참고 항목

파일 이름 경로 구성 요소를 반환합니다
(public member function)
마지막 경로 구성 요소를 다른 경로로 교체합니다
(public member function)
해당 경로 요소가 비어 있지 않은지 확인합니다
(public member function)