Home > Backend Development > C++ > body text

How to Retrieve the User Home Directory in Linux/Unix without Using the HOME Environment Variable?

Barbara Streisand
Release: 2024-10-27 09:20:30
Original
794 people have browsed it

How to Retrieve the User Home Directory in Linux/Unix without Using the HOME Environment Variable?

How to Acquire User Home Directory in Linux/Unix

For C applications running on Linux systems, the user's home directory can be retrieved without the use of the HOME environment variable. Here's a solution that aligns with this requirement:

To obtain the home directory, follow these steps:

  1. Obtain User ID: Utilize the getuid function to retrieve the user ID (UID) of the user currently running the program.
  2. Get Password Entry: Employ the getpwuid function to obtain the password entry associated with the retrieved UID. This entry includes the home directory information.

Example Code:

<code class="cpp">#include <unistd.h> // for getuid
#include <sys/types.h> // for getpwuid
#include <pwd.h> // for getpwuid

struct passwd *pw = getpwuid(getuid());
const char *homedir = pw->pw_dir;</code>
Copy after login

Now, the homedir variable stores the path to the user's home directory.

Note for Root Users:

When a program runs as the root user, it is generally considered unsafe to create files or folders in the /root directory. Instead, it's recommended to create a specific directory within /root for storing program-related data or logs.

The above is the detailed content of How to Retrieve the User Home Directory in Linux/Unix without Using the HOME Environment Variable?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!