An open API service indexing awesome lists of open source software.

https://github.com/rmw-lib/file_open_limit


https://github.com/rmw-lib/file_open_limit

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# file_open_limit

get the file open limit ( windows / mac / linux / freebsd )

use example

```rust
use anyhow::Result;

fn main() -> Result<()> {
dbg!(file_open_limit::get()?);
Ok(())
}
```