1 2 3 4 5 6 7 8
#include <filesystem> namespace fs = std::filesystem; int main() { fs::create_directory("sandbox"); fs::remove_all("sandbox"); }