如何转换ReadDirectoryChangesW的unicode版本

时间:2009-10-06 14:37:25

标签: c++ visual-c++

我需要转换Unicode版本的ReadDirectoryChangesW来支持多字节是可能的

1 个答案:

答案 0 :(得分:-1)

您可以使用此简单方法将多字节字符串转换为unicode字符串

#include <string>
#include <sstream>

    template <typename inputtype>
    std::wstring            toUTF16String(const inputtype& input)
    {       
        std::wstringstream ss;
        ss << input;
        return ss.str();
    }

然后,您可以在unicode函数中使用此获取的值。