- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 WinApi 的新手,我想打开我的 D: 驱动器中的文本文件,但这段代码不起作用。当我运行该应用程序时,出现错误:“Windows 找不到文件‘lobalizarion\Sorting\sortdefaults.nls’”。在控制台中我收到消息:“找不到文件”,但我已经打开了我的驱动器。
在我的代码中,我使用的代码片段来自:How to get hWnd of window opened by ShellExecuteEx.. hProcess?获取创建的 HINSTANCE 的 HWND。
#include "stdafx.h"
#include <Windows.h>
#include <iostream>
#include <vector>
std::wstring stringToLPCTSTR(const std::string& s)
{
int len;
int slength = (int)s.length() + 1;
len = MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, 0, 0);
wchar_t* buf = new wchar_t[len];
MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, buf, len);
std::wstring r(buf);
delete[] buf;
return r;
}
struct ProcessWindowsInfo
{
DWORD ProcessID;
std::vector<HWND> Windows;
ProcessWindowsInfo(DWORD const AProcessID) : ProcessID(AProcessID) {}
};
BOOL __stdcall EnumProcessWindowsProc(HWND hwnd, LPARAM lParam)
{
ProcessWindowsInfo *Info = reinterpret_cast<ProcessWindowsInfo*>(lParam);
DWORD WindowProcessID;
GetWindowThreadProcessId(hwnd, &WindowProcessID);
if (WindowProcessID == Info->ProcessID)
Info->Windows.push_back(hwnd);
return true;
}
int main()
{
SHELLEXECUTEINFOW sei;
sei.cbSize = sizeof(SHELLEXECUTEINFO);
sei.fMask = SEE_MASK_NOCLOSEPROCESS;
sei.hwnd = NULL;
sei.lpVerb = stringToLPCTSTR("open").c_str();
sei.lpFile = stringToLPCTSTR("D:\\file.txt").c_str();
sei.lpParameters = NULL;
sei.lpDirectory = stringToLPCTSTR("D:\\").c_str();;
sei.nShow = SW_SHOWNORMAL;
sei.hInstApp = NULL;
auto retval = ShellExecuteEx(&sei);
if (retval == 0) //check errors
{
if ((int)sei.hInstApp == SE_ERR_FNF)
std::cerr << "File was not found\n";
else
std::cerr << "Unexpected error occured\n";
}
else
{
WaitForInputIdle(sei.hProcess, INFINITE);
ProcessWindowsInfo info(GetProcessId(sei.hProcess));
EnumWindows((WNDENUMPROC)EnumProcessWindowsProc, reinterpret_cast<LPARAM>(&info));
}
std::cin.get();
return 0;
}
最佳答案
stringToLPCTSTR()
返回的 std::wstring
是临时变量,您可以使用它来分配结构 的
。这意味着在您调用 LPCTSTR
成员SHELLEXECUTEINFOWShellExecuteEx()
时,分别调用 c_str()
返回的指针可能不再有效。您需要为此找到不同的解决方案,例如通过为 std::wstring
使用局部变量,但只要您只使用字符串文字,您就可以这样做
sei.lpVerb = L"open";
sei.lpFile = L"D:\\file.txt";
sei.lpDirectory = L"D:\\";
关于c++ - Winapi ShellExecuteEx 不打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46957879/
我想使用 shellexecuteEX 调用 dpinst.exe/u .\\foldername\\foldername\\inffile.inf\d。这个怎么做。抱歉,我对多个参数感到困惑。我尝试
我正在尝试使用 ShellExecuteEx 安装 Windows 服务(使用 CBuilder 6 构建) 这是我的安装函数。 int WinServiceInstall(WideString Se
当我将 ShellExecuteEx 与这样的命令一起使用时 "-unused parameter -action capturescreenshot -filename C:\\ATDK\\Scre
我有一个表单的路径 ::{26EE0668-A00A-44D7-9371-BEB064C98683}\0\Fonts 如果我在资源管理器地址栏中输入它,它会正确打开控制面板 - 字体。 如何使用 Sh
最小、完整和可验证的示例: Visual Studio 2017 专业版 15.9.3 Windows 10 "1803"(17134.441) x64 环境变量 OANOCACHE设置为 1。 显示
我有一个应用程序需要运行链中的其他几个应用程序。我通过 ShellExecuteEx 运行它们。每个应用程序的运行顺序非常重要,因为它们相互依赖。例如: Start(App1); If App1.Is
我的应用程序由ShellExecuteEx使用“runas”动词启动了新过程,以获取管理员特权。新过程在用户文件夹中创建了一些文件,但是内置用户无法读取文件。只有管理员可以访问这些文件。在XP和V
我正在尝试使用以下功能打开图像: HANDLE openFile(char *path){ // path = "C:\Users\Foo Bar\Code\Test\test.jpg" Co
我正在尝试启动一个应用程序,然后监视它直到它关闭。我在使用 ShellExecuteEX 和 GetExitCodeProcess 时遇到了几个问题。 下面的代码在调用 GetExitCodeProc
在异步模式下运行 ShellExecuteEx() 后,如何检索主线程的退出代码? 进程退出代码可以简单地检索如下: SHELLEXECUTEINFO execInfo; execInfo.cbSiz
我正在使用 ShellExecuteEx 来运行外部应用程序: SHELLEXECUTEINFO shExInfo = { 0 }; shExInfo.cbSize = sizeof(shEx
我是 WinApi 的新手,我想打开我的 D: 驱动器中的文本文件,但这段代码不起作用。当我运行该应用程序时,出现错误:“Windows 找不到文件‘lobalizarion\Sorting\sort
我有一个应用程序需要在链中运行其他几个应用程序。我通过 ShellExecuteEx 运行它们。每个应用程序的运行顺序非常重要,因为它们相互依赖。例如: Start(App1); If App1.Is
我想出了这段代码。它将正确执行并返回 true。但它不会改变 Path 变量的值。当我这样输入时 --> setx Path "C:\Program Files\Java\jdk1.7.0_02\bi
假设我希望程序“C:\MyProgram.exe”以两个变量的参数运行。出现的问题是MyProgram只接收2个参数,而我明明传了3个参数。 我的代码: SHELLEXECUTEINFO ShE
我需要生成一个需要调用 UAC 的进程。我读过这篇文章:How can I run a child process that requires elevation and wait? . 不幸的是,我
1) 我用 ShellExecuteEx 启动了一个进程 2) 使用 检索 PID GetProcessId(shellExInfo.hProcess) 示例代码: SHELLEXECUTEINFO
我的问题与 PropertySheetExtension 有关,但默认文件属性表似乎存在相同的行为。以下代码的问题: // Snippet from http://stackoverflow.com/
我正在使用 Qt 在 Visual C++ (2015) 中创建自配置软件工具,根据需要运行其他几个第 3 方安装程序。当软件发现它需要一个不可用的库或驱动程序时,它将使用 ShellExecuteE
我正在用 qt 开发一个应用程序,我需要使用 ShellExecuteEx 来启动一个应用程序。我正在运行一个批处理文件,我需要向它传递 2 个参数。第一个参数只是一个字母,但第二个参数是一个路径,可
我是一名优秀的程序员,十分优秀!