boost_filesystem 0.1.0

Boost C++ library boost_filesystem packaged using Zanbil
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Rob Conde <rob.conde@ai-solutions.com> reports this fails
// to compile for Boost 1.58 with g++ 4.4.7 but is OK with FC++ 2013

#include "boost/filesystem/operations.hpp"

void myFunc()
{
    using namespace boost::filesystem;

    copy_options opt(copy_options::overwrite_existing);

    copy_file(path("p1"), path("p2"), copy_options::overwrite_existing);
    //   copy_file(path("p1"),path("p2"),opt);
}