gpt4 book ai didi

c++ - 我怎样才能得到执行我的程序的人的用户名?

转载 作者:IT王子 更新时间:2023-10-28 23:56:14 25 4
gpt4 key购买 nike

如何在 C++ 中获取进程所有者(正在执行我的程序的用户)的用户名?

最佳答案

window

GetUserName()

例子:

 char user_name[UNLEN+1];
DWORD user_name_size = sizeof(user_name);
if (GetUserName(user_name, &user_name_size))
cout << "Your user name is: " << user_name << endl;
else
/* Handle error */

Linux

getpwuid :

The getpwuid() function shall search the user database for an entry with a matching uid.

The getpwuid() function shall return a pointer to a struct passwd

struct passwd 将包含 char *pw_name

使用getuid获取用户id。

关于c++ - 我怎样才能得到执行我的程序的人的用户名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2189245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com