Linux下获取用户主目录的方法分享时间:2022-03-30 17:54:53方法如下 char *path = getenv("HOME"); printf("path = %s\n",path); getenv是标准库函数,包含stdlib.h头文件就可.