I run a Qt application, what I want to know is this running binary file name.
Again not really a Qt question. To find the name of the binary file executed it would be something like.
#include using namespace std; int main(int argc, char **argv) { cout << argv[0] << endl; return 0; }