C:/Qt/examples/tools/regexp/regexp.exe 1. 1. 程序所在路径 获取exe 程序所在路径,QCoreApplication 类里就实现了相关的功能: //输出:C:/Qt/examples/tools/regexp qDebug() << QCoreApplication::applicationDirPath(); 1. 2. 2. 程序的完整名称 可以这么写: //输出:C:/Qt/examples/tools/regexp...
1.利用QDir获取路径 QDir::currentPath() 此路径是项目编译生成的路径即可执行文件所在目录,例如:build-zol_InteligentEngine-Desktop_Qt_5_12_1_MinGW_64_bit-Debug\debug 2.利用QCoreApplication获取路径 QCoreApplication::applicationDirPath() 此路径是项目bulid生成的路径,例如:build-zol_InteligentEngine-Deskto...
QT 程序文件名称+当前所在路径 QStringQUIHelper::appName() { //没有必要每次都获取,只有当变量为空时才去获取一次 staticQStringname; if(name.isEmpty()) { name=qApp->applicationFilePath(); //下面的方法主要为了过滤安卓的路径 lib程序名_armeabi-v7a QStringListlist=name.split("/"); name=list...
C:/Qt/examples/tools/regexp/regexp.exe 1. 当前工作目录 QDir 提供了一个静态函数 currentPath() 可以获取当前工作目录,函数原型如下: QStringQDir::currentPath() 1. 如果我们是双击一个程序运行的,那么程序的工作目录就是程序所在目录。 如果是在命令行下运行一个程序,那么运行程序时在命令行的哪个目录,那...
1. 程序所在路径 获取exe 程序所在路径,QCoreApplication 类里就实现了相关的功能: //输出:C:/Qt/examples/tools/regexp qDebug() << QCoreApplication::applicationDirPath(); 1. 2. 回到顶部 2. 程序的完整名称 可以这么写: //输出:C:/Qt/examples/tools/regexp/regexp.exe ...
1. 程序所在路径 获取exe 程序所在路径,QCoreApplication 类里就实现了相关的功能: //输出:C:/Qt/examples/tools/regexp qDebug() << QCoreApplication::applicationDirPath(); 1. 2. 回到顶部 2. 程序的完整名称 可以这么写: //输出:C:/Qt/examples/tools/regexp/regexp.exe ...
获取程序所在路径,QCoreApplication 类里就实现了相关的功能: QString QCoreApplication::applicationDirPath() 1. 比如我们有一个程序在: C:/Qt/examples/tools/regexp/regexp.exe 1. 那么qApp->applicationDirPath() 的结果是: C:/Qt/examples/tools/regexp ...
获取程序所在路径,QCoreApplication 类里就实现了相关的功能: QString QCoreApplication::applicationDirPath() 1. 比如我们有一个程序在: C:/Qt/examples/tools/regexp/regexp.exe 1. 那么qApp->applicationDirPath() 的结果是: C:/Qt/examples/tools/regexp ...