在Qt中,可以使用QCoreApplication::applicationDirPath()
方法来获取程序运行路径。该方法返回一个QString对象,表示程序的绝对路径。
以下是一个示例代码:
#include
#include
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QString appDirPath = QCoreApplication::applicationDirPath();
qDebug() << "Application directory path: " << appDirPath;
return a.exec();
}
在上述示例代码中,QCoreApplication::applicationDirPath()
方法被调用,并将返回的路径存储在appDirPath
变量中。然后,使用qDebug()
函数打印出程序运行路径。
注意,QCoreApplication::applicationDirPath()
方法返回的是程序所在的目录路径,而不是程序本身的路径。如果你想获取程序本身的路径,可以使用QCoreApplication::applicationFilePath()
方法。