Ich habe diesen Code
#include <iostream>
#include <filesystem>
int main() {
try {
std::filesystem::path currentPath = std::filesystem::current_path();
std::cout << "Aktuelles Verzeichnis: " << currentPath << std::endl;
} catch (const std::filesystem::filesystem_error& e) {
std::cerr << "Fehler: " << e.what() << std::endl;
}
return 0;
}
und bekomme diesen Fehler
fs.cpp:2:22: fatal error: filesystem: No such file or directory
#include <filesystem>
Beim Compilieren gebe ich diesen Befehl an
g++ fs.cpp --std=c++17