gpt4 book ai didi

c++ - 如何在 win32 中使用 GetSaveFileName 保存文件?

转载 作者:可可西里 更新时间:2023-11-01 17:23:09 27 4
gpt4 key购买 nike

我写这段代码来获取文件名来保存我的文件:

#include "stdafx.h"
#include <windows.h>


int _tmain(int argc, _TCHAR* argv[])
{
OPENFILENAME ofn;

char szFileName[MAX_PATH] = "";

ZeroMemory(&ofn, sizeof(ofn));

ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = NULL;
ofn.lpstrFilter = (LPCWSTR)L"Text Files (*.txt)\0*.txt\0All Files (*.*)\0*.*\0";
ofn.lpstrFile = (LPWSTR)szFileName;
ofn.nMaxFile = MAX_PATH;
ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
ofn.lpstrDefExt = (LPCWSTR)L"txt";

GetSaveFileName(&ofn);
printf("the path is : %s\n", ofn.lpstrFile);
getchar();
return 0;
}

但是输出是:

 the path is : H 

为什么?我做错了什么吗?
我在 Windows 7 上使用 Visual Studio 2008。

最佳答案

这一行:

printf("the path is : %s\n", ofn.lpstrFile);

应该使用 printf 的宽字符版本。

wprintf(L"the path is : %s\n", ofn.lpstrFile);

关于c++ - 如何在 win32 中使用 GetSaveFileName 保存文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10449304/

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