mirror of
https://github.com/ceph/ceph
synced 2025-02-08 03:18:12 +00:00
since we've dropped the support of GCC older than v8.0, there is no need to detect <experimental/filesystem> Signed-off-by: Kefu Chai <kchai@redhat.com>
9 lines
139 B
C++
9 lines
139 B
C++
#include <filesystem>
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
int main() {
|
|
fs::create_directory("sandbox");
|
|
fs::remove_all("sandbox");
|
|
}
|