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
15
16
17
// Linux test; before running: export LANG=foo

#include <locale>
#include <iostream>
#include <string>
#include <boost/filesystem/path.hpp>

int main()
{
    std::string pathname = "/some/filesystem/path/%%%%";

    boost::filesystem::path path(pathname);

    std::wcout << path.wstring() << std::endl;

    return 0;
}