[c++] 디렉토리 삭제하기

아래는 디렉토리를 삭제하는 예제 코드입니다.

#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;

int main() {
    std::string path = "directory_path_here";
    if (fs::is_directory(path)) {
        fs::remove_all(path);
        std::cout << "디렉토리가 삭제되었습니다." << std::endl;
    } else {
        std::cout << "해당 경로는 디렉토리가 아닙니다." << std::endl;
    }
    return 0;
}

위 코드에서 "directory_path_here"를 실제 디렉토리 경로로 대체하고, 해당 경로가 디렉토리인지 여부를 확인한 후 remove_all 함수를 사용하여 디렉토리를 삭제합니다.

더 자세한 내용은 다음 링크를 참고하세요: