如何通过关联的外部程序打开文件,如果失败,则调用“打开方式...”对话框?
它可以是平台无关的代码吗?或者我需要使用
#ifdef
#else
#endif
为每个平台实现“打开方式...”对话框调用的结构?
提前致谢
编辑:更新,经过几个小时的研究,我找到了适用于 Windows 的良好解决方案。
我们尝试使用 ShellExecute(...) 打开文件,如果它因文件关联错误而失败,我们通过“打开为”Shell32.dll 对话框打开文件
QString file_path = "C:\VeryGoodPath.txt";
int iResult = (int)ShellExecuteA(0, 0, file_path.toStdString().c_str(), 0, 0 , SW_SHOW );
if(iResult>32)
{
// Succesful run
}
else
{
if(SE_ERR_ASSOCINCOMPLETE==iResult)
{
QString ShellCmd = "C:\\Windows\\system32\\shell32.dll,OpenAs_RunDLL \""+file_path +"\"";
ShellExecuteA(0,"open", "C:\\Windows\\system32\\rundll32.exe",ShellCmd.toStdString().c_str(),NULL, SW_NORMAL);
}
else
{
// Errors
}
}
EDIT2:问题是,我不使用
QDesktopServices::openUrl(...)
这个函数
QUrl::fromLocalFile("<path_to_your_file>")