libqi-api
2.0.6.8
|
This piece of code show an example using boost::filesystem and boost::locale to deal with UTF-8 path.
This example explain how to use boost::filesystem in cross-platform manner. This especially handle the Windows UTF-16 case.
/* * Copyright (c) 2012 Aldebaran Robotics. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the COPYING file. */ #include <iostream> #include <boost/filesystem.hpp> #include <boost/locale.hpp> int main(int argc, char *argv[]) { char utf8[] = {0xC5, 0xAA, 0x6E, 0xC4, 0xAD, 0x63, 0xC5, 0x8D, 0x64, 0x65, 0xCC, 0xBD, 0}; std::string utf8xx(utf8); // Get the default locale std::local loc = boost::locale::generator().generate(""); // Set the global locale to loc std::locale::global(loc); // Make boost.filesystem use it by default boost::filesystem::path::imbue(std::locale()); // Create the path ("foo" should be utf-8) boost::filesystem::path path("foo"); path /= "bar"; path /= utf8xx; std::cout << "path:" << path.string() << std::endl; return 0; }