C ++ 11 File System (VS2012)

I am having trouble finding the documentation for the title included in vs2012. I see what is mentioned here, but they do not provide a link on how to use it. What I'm really looking for is documentation on how to use it, with a visual studio implementation preferred. Thanks

+10
c ++ c ++ 11 visual-c ++ visual-c ++ - 2012 c ++ - tr2
Aug 28 2018-12-12T00:
source share
1 answer

The <filesystem> header is not part of C ++ 11; This 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> and C ++ TR2 header on which the implementation is implemented (the last TR2 N3335 sentence since January, but I don’t know what has changed or the Visual C ++ 2012 implementation includes any of the latest changes).

+21
Aug 28 2018-12-12T00:
source share



All Articles