gpt4 book ai didi

使用非 ascii 文件名调用 _findfirst

转载 作者:太空宇宙 更新时间:2023-11-04 03:29:49 25 4
gpt4 key购买 nike

我有一个多字节 Windows 项目,我尝试访问一个文件,该文件的名称可以包含现代 Windows 允许的任何符号。但是如果文件名包含非 ASCII 字符(日语、瑞典语、俄语等),我会惨败。

例如:

const char * filename_ = "C:\\testÖ.txt"
struct _finddata_t fd;
long fh = _findfirst(filename_, &fd);

此时 _findfirst() 失败。

支持所有可能文件名的最佳解决方案是什么?我读到 _findfirst() 取决于程序启动时设置的系统区域设置。好吧,我可以为某个文件更改它,但在这种情况下我如何确定文件名所需的语言环境?

项目必须保持多字节。

有没有人解决过这样的问题?

我也尝试过使用宽字符转换,但也没有成功。下面的代码示例:

debug_prnt("DEBUG: Checking existance of a file: %s\n", filename_);
struct _wfinddata_t ff;
size_t requiredSize = mbstowcs(NULL, filename_, 0);
wchar_t * filename = (wchar_t *)malloc((requiredSize + 1) * sizeof(wchar_t));
if (!filename)
{
debug_prnt("ERROR: Memory allocation failed\n");
return FALSE;
}
size_t size = mbstowcs(filename, filename_, requiredSize + 1);
if (size == (size_t)(-1))
{
debug_prnt("ERROR: Couldn't convert string--invalid multibyte character.\n");
return FALSE;
}

long fh = _wfindfirst(filename, &ff);
if (fh > 0)
debug_prnt("DEBUG: File exists\n");
else
debug_prnt("DEBUG: File does not exist %ls\n", filename);
free(filename);

最佳答案

这是一个简短但完整的 Windows 控制台应用程序,它使用了您想要使用的功能。

这个程序所做的是在当前工作文件夹中创建一个文件作为要查找的文件,然后列出当前工作文件夹中扩展名为 .txt 的文件。

对于搜索条件,我使用了硬编码的宽字符串。在您的情况下,您可能需要接受该字符串作为多字节字符串,将其转换为宽字符,然后将其与 _wfindfirst() 一起使用。

但是在我的设置中,printf() 似乎存在文本转换问题,因此打印到控制台的非 ASCII 文本中有一个奇怪的字符。但是调试器显示正常。

// multibyte_file_search.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <locale.h>
#include <io.h>

int _tmain(int argc, _TCHAR* argv[])
{
const char * filename_ = "testÖ.txt";
FILE *fp = fopen (filename_, "w");
fclose(fp);

// test out mbstowcs()
wchar_t *wcsFileName_ = new wchar_t[512];
int requiredSize = mbstowcs(NULL,filename_,0);
size_t xsize = mbstowcs(wcsFileName_,filename_,512);
printf ("mbstowcs() return %d\n", xsize);

// do an actual directory search on the current working directory.
printf ("\n\n Directory search begins.\n");
struct _wfinddata_t ff = {0};
char *csFileName_ = new char[512];
strcpy (csFileName_, "*.txt");
xsize = mbstowcs(wcsFileName_,csFileName_,512); // convert search to wide character.
intptr_t fh = _wfindfirst(wcsFileName_, &ff);

if (fh != -1) {
do {
wcstombs (csFileName_, ff.name, 512);
printf (" ff.name %S and converted name %s \n", ff.name, csFileName_);
wprintf (L" ff.name %s and converted name %S \n", ff.name, csFileName_);
} while (_wfindnext (fh, &ff) == 0);
_findclose (fh);
} else {
printf ("No files in directory.\n");
}

return 0;
}

关于使用非 ascii 文件名调用 _findfirst,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37744828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com