![Latest Version] ![Documentation] ![License]
Set and get Unix file owner and group.
UID/GUI numbers or user/group names can be used.
Note: This crate will only compile on Unix systems.
```rust use file_owner::PathExt;
"/tmp/baz".setowner("nobody").unwrap(); "/tmp/baz".setgroup("nogroup").unwrap();
let o = "/tmp/baz".owner().unwrap(); o.id(); // 99 o.name(); // Some("nobody")
let g = "/tmp/baz".group().unwrap(); g.id(); // 99 g.name(); // Some("nogroup") ```
See module level documentation on [docs.rs] for more examples.