How to get executable name in Qt
Asked Answered
qt
P

3

40

I run a Qt application, what I want to know is this running binary file name.

Pumice answered 23/12, 2010 at 3:12 Comment(0)
R
99

I must (partially) disagree with the other comments that it is not a Qt question: There is a Qt method QCoreApplication::applicationFilePath() which gives the directory+filename of the executable.

On Linux this will try to use /proc, and on Windows perhaps GetModuleFileName(). According to the docs it will fall back to argv[0].

You could then use QFileInfo to split it into an executable name and a directory.

QFileInfo(QCoreApplication::applicationFilePath()).fileName()
Ruminate answered 23/12, 2010 at 8:6 Comment(5)
+1. And for the application directory, you can use QCoreApplication::applicationDirPath().Tericaterina
I got: QCoreApplication::applicationFilePath: Please instantiate the QApplication object firstVincentia
qApp->applicationFilePath();Alwyn
Thanks @Cameron. Was looking for that. :DAtwater
QApplication a(argc, argv); QString appPath = a.applicationFilePath();Orthorhombic
M
3

The Qapplication parses the commandline arguemnts, the first entry is the name of the executable - this is roughly the same as argv[0] in standard C but has a few extra complexities on windows if you have a Unicode build or if the application is started as a service

See http://doc.qt.io/qt-5/qcoreapplication.html#arguments

Monday answered 23/12, 2010 at 6:16 Comment(0)
W
-2

Again not really a Qt question. To find the name of the binary file executed it would be something like.

#include <iostream>
using namespace std;
int main(int argc, char **argv)
{
  cout << argv[0] << endl;
  return 0;
}
Wittol answered 23/12, 2010 at 3:53 Comment(1)
I'm unsure as to why your concern about it being a Qt question is relevant. The OP is simply stating the environment they're using, no different to if they had said "Linux" or Windows" or, for that matter, "C++". It's extra information which can help target the answers. In this particular case, it's useful because Qt provides a much better way to get this info - as per the ISO standard, argv[0] is not required to actually hold any useful information about the executable. see https://mcmap.net/q/175168/-when-can-argv-0-have-null/… for details.Nosology

© 2022 - 2024 — McMap. All rights reserved.