Linux下获取用户主目录的方法分享时间:2021-09-28 12:20:11char *path = getenv("HOME"); printf("path = %s\n",path); getenv是标准库函数,包含stdlib.h头文件就可.