1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 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(()) } ```