Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.04 KB

history.md

File metadata and controls

48 lines (35 loc) · 1.04 KB

History


C++98 - C++14: No filesystem API

  • Only <fstream> to create/write files
  • Platform API (POSIX, Win32, ...)

Boost.Filesystem

Note: Version 4 might be changed to reflact C++17 std::filesstem


C++17: std::filesystem


experimental/filesystem

  • Pre-Standard implementation of the new API
  • Header: <experimental/filesystem>
  • Namespace: std::experimental::filesystem
  • Available in GCC 5.3
  • Available in clang 5.0
  • Available in MSVC 19 - 2017

Differences