1
0
mirror of https://github.com/ceph/ceph synced 2025-03-24 19:27:56 +00:00
ceph/cmake/modules/FindStdFilesystem_test.cc

9 lines
139 B
C++
Raw Normal View History

#include <filesystem>
namespace fs = std::filesystem;
int main() {
fs::create_directory("sandbox");
fs::remove_all("sandbox");
}