https://github.com/rmw-lib/file_open_limit
https://github.com/rmw-lib/file_open_limit
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rmw-lib/file_open_limit
- Owner: rmw-lib
- Created: 2022-07-12T03:39:56.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-12T05:14:03.000Z (about 4 years ago)
- Last Synced: 2025-09-16T13:27:47.123Z (10 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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(())
}
```