gpt4 book ai didi

wxWidgets:获取应用程序路径

转载 作者:行者123 更新时间:2023-12-03 20:57:03 25 4
gpt4 key购买 nike

如何获取模块路径?

我正在编写包含在 DLL 中的扩展,并希望在运行时获取我的库的路径。

更新

当然第一种方法很好用

static wxString GetModulePath()
{
static wxString path;

WCHAR buf[512] = {0};
GetModuleFileName(NULL, buf, 511);
path = buf;

return wxPathOnly(path);
}

但最后我以第二个结束

wxStandardPaths sp;
wxLogError(sp.GetPluginsDir());

最佳答案

看看 wxStandardPaths类(class)。对于您的问题,它是 GetExecutablePath()GetPluginsDir()可以使用方法 - 我只是不确定您想做什么。

关于wxWidgets:获取应用程序路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/991169/

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