gpt4 book ai didi

c++ - 如何使用 GetPrivateProfileString() 从当前目录上升到目录

转载 作者:行者123 更新时间:2023-11-28 04:15:22 24 4
gpt4 key购买 nike

我正在尝试使用 GetPrivateProfileString 从 ini 文件中读取我的程序的授权详细信息。我想进入 directory/Folder/File.ini) 但不知道该怎么做

我试过 GetFullPathName()

void ini {


std::string iniPath = "/Ice/Ice.ini";
LPWSTR inipath = A2W_EX(iniPath.c_str(), iniPath.length());



DWORD IniPath = std::strtoul(iniPath.c_str(), NULL, 16);


std::string playerUsername;

std::string playerPassword;

TCHAR iniauthChar[32];



playerUsername = GetPrivateProfileString(authheader, authuser, 0, iniauthChar, 256, inipath);
playerPassword = GetPrivateProfileString(authheader, authpass, 0, iniauthChar, 256, inipath);



}

这是我的 ini 文件,位于上面的目录中

[AUTH]
Username=
Password=

最佳答案

在 Windows 上,您应该使用 \\ 而不是 / 作为目录路径。

#include <windows.h>
#include <iostream>

int main()
{
LPWSTR fn = L"Ice\\Ice.ini";

wchar_t buf[MAX_PATH];
GetFullPathNameW(fn, MAX_PATH, buf, NULL);

std::wcout << buf << std::endl;
}

或者使用 ANSI 字符串:

#include <windows.h>
#include <iostream>

int main()
{
LPSTR fn = "Ice\\Ice.ini";

char buf[MAX_PATH];
GetFullPathNameA(fn, MAX_PATH, buf, NULL);

std::cout << buf << std::endl;
}

关于c++ - 如何使用 GetPrivateProfileString() 从当前目录上升到目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56766587/

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