8 stable releases
1.1.3 | Sep 2, 2024 |
---|---|
1.1.2 | Aug 19, 2022 |
1.1.1 | Feb 4, 2022 |
1.0.5 | Nov 8, 2020 |
1.0.2 | Jul 25, 2020 |
#169 in Unix APIs
869 downloads per month
Used in 10 crates
(2 directly)
19KB
273 lines
file-locker
File locking via POSIX advisory record locks (fork of file-lock)
This crate provides the facility to lock and unlock a file following the advisory record lock scheme as specified by UNIX IEEE Std 1003.1-2001 (POSIX.1) via fcntl().
This crate currently supports Linux and FreeBSD.
USAGE
use file_lock::FileLock;
use std::io::prelude::*;
use std::io::Result;
fn main() -> Result<()> {
let filelock = FileLock::new("myfile.txt")
.writeable(true)
.blocking(true)
.lock()?;
filelock.file.write_all(b"Hello, World!")?;
// Manually unlocking is optional as we unlock on Drop
filelock.unlock();
}
DOCUMENTATION
SUPPORT
Please report any bugs at:
Or by email at:
AUTHORS
Sebastian Thiel <byronimo@gmail.com>
Contribution
Contribution welcome!
Please send any patches to ~zethra/public-inbox@lists.sr.ht
If you need help sending a patch over email please see this guide
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed under the MIT license, without any additional terms or conditions.
Dependencies
~1.5MB
~35K SLoC