Brian R. Bondy
Brian R. Bondy

Reputation: 347606

boost::filesystem::path for unicode file paths?

Is there a way to use boost::filesystem::path with unicode file paths? In particular I'd like to use it with std::wstring instead of std::string.

I'm working on the windows platform and I need to sometimes process a filepath that has a unicode char in it.

Upvotes: 2

Views: 5748

Answers (1)

duff
duff

Reputation:

Looking at the header file, I see a wpath that's templated with std::wstring.

Upvotes: 7

Related Questions