id summary reporter owner description type status milestone component version severity resolution keywords cc 6832 "Missing ""using"" statement for copy_directory()" peter.klotz@… Beman Dawes "In boost/filesystem/v3/operations.hpp there is no ""using filesystem3::copy_directory"" statement. Therefore one must explicitly write ""boost::filesystem3::copy_directory()"" instead of ""boost::filesystem::copy_directory()"". Trivial patch: --- operations.hpp 2012-04-26 21:01:10.598976200 +0200 +++ operations.hpp.patched 2012-04-26 20:59:30.176458500 +0200 @@ -1128,6 +1128,7 @@ using filesystem3::character_file; // using filesystem3::copy; using filesystem3::copy_file; + using filesystem3::copy_directory; using filesystem3::copy_option; using filesystem3::copy_symlink; using filesystem3::create_directories;" Bugs closed To Be Determined filesystem Boost 1.49.0 Problem fixed boost@…