c++ - Get system username in Qt -
c++ - Get system username in Qt -
is there cross platform way current username in qt c++ program?
i've crawled net , documentation solution, thing find os dependent scheme calls.
i thinking couple of days ago, , came conclusion of having different alternatives, each own trade-off, namely:
environment variables using qgetenv.the advantage of solution easy implement. drawback if environment variable set else, solution unreliable then.
#include <qstring> #include <qdebug> int main() { qstring name = qgetenv("user"); if (name.isempty()) name = qgetenv("username"); qdebug() << name; homecoming 0; }
home location qstandardpaths the advantage that, relatively easy implement, again, can go unreliable since valid utilize different username , "entry" in user home location.
#include <qstandardpaths> #include <qstringlist> #include <qdebug> #include <qdir> int main() { qstringlist homepath = qstandardpaths::standardlocations(qstandardpaths::homelocation); qdebug() << homepath.first().split(qdir::separator()).last(); homecoming 0; }
run external processes , utilize platform specific apis this hard implement, on other hand, seems reliable cannot changed under application environment variable or home location tricks. on linux, utilize qprocess invoke usual whoami command, , on windows, utilize getusername winapi purpose.
#include <qcoreapplication> #include <qprocess> #include <qdebug> int main(int argc, char **argv) { // strictly pseudo code! #ifdef q_os_win char acusername[max_username]; dword nusername = sizeof(acusername); if (getusername(acusername, &nusername)) qdebug << acusername; homecoming 0; #elif q_os_unix qcoreapplication coreapplication(argc, argv); qprocess process; qobject::connect(&process, &qprocess::finished, [&coreapplication, &process](int exitcode, qprocess::exitstatus exitstatus) { qdebug() << process.readallstandardoutput(); coreapplication.quit(); }); process.start("whoami"); homecoming coreapplication.exec(); #endif }
summary: go lastly variant since, though hard implement, reliable.
c++ qt qtcore
Comments
Post a Comment