QString strSelect = "/select,";
QString path = strfileName;//文件地址
path.replace("/","\\");//将地址中的"/"替换为"\",因为在Windows下使用的是"\"。
QProcess::startDetached("explorer "+ strSelect+ path);//打开文件夹,并选中文件
QString strSelect = "/select,";
QString path = strfileName;//文件地址
path.replace("/","\\");//将地址中的"/"替换为"\",因为在Windows下使用的是"\"。
QProcess::startDetached("explorer "+ strSelect+ path);//打开文件夹,并选中文件