Qt 获取程序运行路径

    //在需要的地方
    QString path;
    QDir dir;
    path=dir.currentPath();
    QMessageBox::warning(0,"PATH",path,QMessageBox::Yes);//查看路径

你可能感兴趣的:(qt,Path)