I'm using GCC 7.4.0 and clang 6.0.0 and they both seem to have an implementation of filesystem in <experimental/filesystem>
.
since the project that i'm working on requires std::filesystem, i want to know which versions (Major + Minor) of them support it, and in which versions is it implemented in <experimental/filesystem>
and <filesystem>
.
so that i can handle the #include
s and namespace
s correctly, and also throw in some #if
s to avoid trying to compile the project with an unsupported version of the compilers