首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

Qt 怎么判断某个文件夹处于打开状态

2013-11-29 
Qt 如何判断某个文件夹处于打开状态?如题。QProcess::startDetached(explorer + path)如果path已经打开,

Qt 如何判断某个文件夹处于打开状态?
如题。
QProcess::startDetached("explorer "+ path);如果path已经打开,那么就直接激活窗口
[解决办法]
//这个是检查路径是否存在的
QDir dir;
if (dir.exists(path))
{

}

//这个是检查程序是否运行
 int nState = process.state();
    if (nState == QProcess::Running)
    {
}

热点排行