如何使用 std::filesystem skip/disregard 名称使用宽字符的文件?
How to skip/disregard files with names that use wide characters using std::filesystem?
我正在遍历大量嵌套目录以搜索具有某些扩展名的文件,比如“.foo”,使用如下代码:
namespace fs = std::filesystem;
int main(int argc, char* argv[])
{
std::ios_base::sync_with_stdio(false);
for (const auto& entry : fs::recursive_directory_iterator("<some directory>")) {
if (entry.path().extension() == ".foo") {
std::cout << entry.path().string() << std::endl;
}
}
}
但是上面的代码会抛出名称使用 unicode/wide 个字符的文件。我知道我可以通过在任何地方使用 wstring 来解决上面小程序中的问题,即 std::wcout << entry.path().wstring() << std::endl;
但我实际上需要在我的真实程序中做的是跳过这些文件。现在我正在捕获 for 循环主体中的异常,在这种情况下什么也不做,但我想知道是否有更直接的方法。
在 Windows/Visual Studio 中抛出的具体异常是
No mapping for the Unicode character exists in the target multi-byte
code page.
如何使用标准 C++ 测试此类文件名?
Unicode 字符具有值 > 0x7f
,因此您可以这样做:
bool is_wide = false;
for (auto ch : entry.path().wstring())
{
if (ch > 0x7f)
{
is_wide = true;
break;
}
}
if (!is_wide)
std::cout << entry.path().string() << std::endl;
我正在遍历大量嵌套目录以搜索具有某些扩展名的文件,比如“.foo”,使用如下代码:
namespace fs = std::filesystem;
int main(int argc, char* argv[])
{
std::ios_base::sync_with_stdio(false);
for (const auto& entry : fs::recursive_directory_iterator("<some directory>")) {
if (entry.path().extension() == ".foo") {
std::cout << entry.path().string() << std::endl;
}
}
}
但是上面的代码会抛出名称使用 unicode/wide 个字符的文件。我知道我可以通过在任何地方使用 wstring 来解决上面小程序中的问题,即 std::wcout << entry.path().wstring() << std::endl;
但我实际上需要在我的真实程序中做的是跳过这些文件。现在我正在捕获 for 循环主体中的异常,在这种情况下什么也不做,但我想知道是否有更直接的方法。
在 Windows/Visual Studio 中抛出的具体异常是
No mapping for the Unicode character exists in the target multi-byte code page.
如何使用标准 C++ 测试此类文件名?
Unicode 字符具有值 > 0x7f
,因此您可以这样做:
bool is_wide = false;
for (auto ch : entry.path().wstring())
{
if (ch > 0x7f)
{
is_wide = true;
break;
}
}
if (!is_wide)
std::cout << entry.path().string() << std::endl;