file_open_limit 0.0.1

get the file open limit ( windows / mac / linux / freebsd )
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# file_limit

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

use example

```rust
use anyhow::Result;
use file_limit;

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