当指定文件的路径包含空格时,如何使用 QProcess 启动 explorer.exe?
How to start explorer.exe with QProcess when the path to the specified file contains spaces?
我想启动资源管理器和 select 一个特定的文件。所以我运行
QProcess::startDetached(command);
将命令设置为
explorer.exe /select,C:\Users\....\file.txt
这工作正常,但如果文件路径包含空格,则会失败。但是如果我把路径放在引号里
explorer.exe /select,"C:\Users\....\file.txt"
资源管理器将打开文档文件夹,而不是指定路径。
运行 来自命令行的相同字符串工作正常。
字符串初始化为
command = "explorer.exe" + "/select," + "\"" + QDir::toNativeSeparators(path) + "\"";
如何实现这一点确实不是那么直观,但也不是不可能。
解决方案
将命令 explorer.exe
的所有参数分解为单独的字符串,即 /select
、,
、the_path
.
示例
QProcess::startDetached("explorer.exe", QStringList{"/select", ",", "C:\Users\Your Username\Desktop\Folder With Spaces\file.txt"});
我想启动资源管理器和 select 一个特定的文件。所以我运行
QProcess::startDetached(command);
将命令设置为
explorer.exe /select,C:\Users\....\file.txt
这工作正常,但如果文件路径包含空格,则会失败。但是如果我把路径放在引号里
explorer.exe /select,"C:\Users\....\file.txt"
资源管理器将打开文档文件夹,而不是指定路径。 运行 来自命令行的相同字符串工作正常。
字符串初始化为
command = "explorer.exe" + "/select," + "\"" + QDir::toNativeSeparators(path) + "\"";
如何实现这一点确实不是那么直观,但也不是不可能。
解决方案
将命令 explorer.exe
的所有参数分解为单独的字符串,即 /select
、,
、the_path
.
示例
QProcess::startDetached("explorer.exe", QStringList{"/select", ",", "C:\Users\Your Username\Desktop\Folder With Spaces\file.txt"});