15 releases
Uses old Rust 2015
0.2.2 | Jul 6, 2018 |
---|---|
0.2.1 | Jul 21, 2017 |
0.1.11 | Feb 27, 2017 |
0.1.10 | Aug 23, 2016 |
0.1.2 | Jul 10, 2015 |
#75 in Filesystem
166,003 downloads per month
Used in 587 crates
(11 directly)
30KB
852 lines
xattr
A small library for setting, getting, and listing extended attributes.
Supported Platforms: Linux, MacOS, FreeBSD, and NetBSD.
API Documentation: https://stebalien.github.com/xattr/xattr/
Unsupported Platforms
This library includes no-op support for unsupported platforms. That is, it will build on all platforms but always fail on unsupported platforms.
- You can turn this off by disabling the default
unsupported
feature. If you do so, this library will fail to compile on unsupported platforms. - Alternatively, you can detect unsupported platforms at runtime by checking
the
xattr::SUPPORTED_PLATFORM
boolean.
lib.rs
:
A pure-Rust library to manage extended attributes.
It provides support for manipulating extended attributes
(xattrs
) on modern Unix filesystems. See the attr(5)
manpage for more details.
An extension trait FileExt
is provided to directly work with
standard File
objects and file descriptors.
NOTE: In case of a symlink as path argument, all methods in this library work on the symlink itself without de-referencing it.
let mut xattrs = xattr::list("/").unwrap().peekable();
if xattrs.peek().is_none() {
println!("no xattr set on root");
return;
}
println!("Extended attributes:");
for attr in xattrs {
println!(" - {:?}", attr);
}