I’m seeing that the following section in boost/filesystem3/path.hpp
// older functions no longer supported
// ...
//basic_path& canonize();
What equivalent can I use to archieve the same goal on an incoming boost::filesystem::path? I have boost version 1.47. I’m seeing the canonical(...) function in the online docs, but I cannot find it in my headers. Let’s say I cannot upgrade. What can I do?
I believe the
normalize()function does the same thing.