gulrak / filesystem

An implementation of C++17 std::filesystem for C++11 /C++14/C++17/C++20 on Windows, macOS, Linux and FreeBSD.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++20 support?

shrinktofit opened this issue · comments

As you know, MacOS support -std=c++20 even in 10.14 but does not support <filesystem> until 10.15.

char8_t, std::u8string are coming soon. std::filesystem::path::string() will returns std::u8string instead of std::string.

Indeed, C++20 support is on my list of planned features, I just didn't find time to really work on it. I guess it will take me a few more weeks to finish it, as it is not needed in my payed work project and my free time available for it is limited. It will be released in v1.4.0.

This is now solved with release v1.4.0

This is now solved with release v1.4.0

Thank you!