This crate exists to provide a portable method to getting any user's home
directory. The API is rather simple: there are two main functions,
get_home
and get_my_home
. The former can get the home directory
of any user provided you have their username. The latter can get the home
directory of the user executing this process.
This crate aims to work on both Windows and Unix systems. However,
Unix systems do not have a unified API. This crate may not work
on Unix systems which do not have the getpwnam_r(3)
, getpwuid_r(3)
,
and getuid(2)
functions.
This crate is on crates.io and can be used by executing cargo add homedir
or adding the following to the dependencies in your Cargo.toml
file.
toml
[dependencies]
homedir = "0.2.1"
```rust use homedir::getmyhome;
// This assumes that the process' user has "/home/jpetersen" as home directory. asserteq!( std::path::Path::new("/home/jpetersen"), getmyhome().unwrap().unwrap().aspath() ); ```
```rust use homedir::get_home;
// This assumes there is a user named Administrator
which has
// C:\Users\Administrator
as a home directory.
asserteq!(
std::path::Path::new("C:\Users\Administrator"),
gethome("Administrator").unwrap().unwrap().aspath()
);
assert!(gethome("NonExistentUser").unwrap().is_none());
```
The full documentation of the crate is available on the docs.rs page.
Licensed under either of
at your option.
Unless you explicitely state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Feel free to put a copyright header in your name in any files you contribute to.
Copyright (C) 2023 James Petersen m@jamespetersen.ca.