gpt4 book ai didi

C getopenfilename 获取文件名

转载 作者:行者123 更新时间:2023-11-30 15:49:32 27 4
gpt4 key购买 nike

我有以下代码,问题是,当我打印文件的完整路径名时,数组中每个字符之间有双空格。

// initialization outside any class in .c code
OPENFILENAME ofn; // common dialog box structure
char szFile[260]; // buffer for file name
HWND hwnd; // owner window
HANDLE hf; // file handle
...
...
// inside a function
initializeOpenFile();
GetOpenFileName(&ofn);


for(i = 0; i < sizeof(szFile)/sizeof(char);i++){
fprintf(stderr,"%c", szFile[i]);
}
}
}

void initializeOpenFile(){
// Initialize OPENFILENAME
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = hwnd;
ofn.lpstrFile = szFile;
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not
// use the contents of szFile to initialize itself.
ofn.lpstrFile[0] = '\0';
ofn.nMaxFile = sizeof(szFile);
ofn.lpstrFilter = TEXT("All\0*.*\0Text\0*.TXT\0");
ofn.nFilterIndex = 1;
ofn.lpstrFileTitle = NULL;
ofn.nMaxFileTitle = 0;
ofn.lpstrInitialDir = NULL;
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
}

打印我:

enter image description here

我想使用该 char 数组传递给 openFile 函数:

FILE* fp = fopen( filename, "r" );

最佳答案

看起来它是一个宽字符串,即。一串宽字符。 (引用:wikipedia)

所以 szFile 应该声明:

wchar_t szFile[260];

然后你可以使用 wcstombs() 转换它(我认为!)。

char szPath[260];
wcstombs(szPath, szFile, 260);

szPath 现在应该包含一个“正常”(窄)字符串。

关于C getopenfilename 获取文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16228060/

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