qt获取当前路径的方法是什么

avatar
作者
猴君
阅读量:0

要获取当前路径,可以使用QCoreApplication::applicationDirPath()方法。该方法返回一个QString,表示应用程序的当前路径。下面是一个示例代码:

#include <QCoreApplication> #include <QDebug>  int main(int argc, char *argv[]) {     QCoreApplication a(argc, argv);          QString currentPath = QCoreApplication::applicationDirPath();     qDebug() << "Current path: " << currentPath;          return a.exec(); } 

运行上述代码,会打印出当前路径。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!