Java教程

QT 获取当前项目可执行文件路径

本文主要是介绍QT 获取当前项目可执行文件路径,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <QCoreApplication>

QString strDirPath = QCoreApplication::applicationDirPath();
QString strFilePath = QCoreApplication::applicationFilePath();

Tips:

  1. QCoreApplication::applicationDirPath()
    Returns the directory that contains the application executable.
    返回包含当前项目的可执行文件的路径;

  2. QCoreApplication::applicationFilePath();
    Returns the file path of the application executable.
    返回可执行文件的路径

e.g.:
可执行文件的的路径为"/home/MonroeLiu/project/test/bin/executable.exe";
则:

strDirPath = "/home/MonroeLiu/project/test/bin";
strFilePath = "/home/MonroeLiu/project/test/bin/executable.exe";
这篇关于QT 获取当前项目可执行文件路径的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!