C++11 filesystem (VS2012)

后端 未结 1 1915
灰色年华
灰色年华 2021-01-17 17:21

I am having a lot of trouble finding any documentation on the header included with vs2012. I see that it is mentioned here but they don\'t provide a link on how to use it.

相关标签:
1条回答
  • 2021-01-17 17:48

    The <filesystem> header is not part of C++11; it is a proposal for C++ TR2 based on the Boost.Filesystem library. Visual C++ 2012 includes an implementation of the proposed library.

    See the MSDN documentation for the <filesystem> header and the C++ TR2 proposal on which the implementation is based (the latest TR2 proposal is N3335 from January, but I don't know what has changed or whether the Visual C++ 2012 implementation includes any of the most recent changes).

    0 讨论(0)
提交回复
热议问题