std::filesystem::current_path (3) Linux Manual Page
std::filesystem::current_path – std::filesystem::current_path Synopsis Defined in header<filesystem> path current_path(); (1)(since C++ 17) path current_path(std::error_code &ec); (2)(since C++ 17) void current_path(const std::filesystem::path &p); (3)(since C++ 17) void current_path(const std::filesystem::path &p, (4)(since C++ 17) std::error_code &ec) noexcept; Returns or changes the current path. 1-2) Returns the absolute path of the current working directory, obtained as if (in…
