作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我运行以下命令时:
use std::fs::File;
fn main() {
let filename = "not_exists.txt";
let reader = File::open(filename);
match reader {
Ok(_) => println!(" * file '{}' opened successfully.", filename),
Err(e) => {
println!("{:?}", &e);
}
}
}
输出为:
Os { code: 2, kind: NotFound, message: "No such file or directory" }
是否可以将该代码作为整数获取?
最佳答案
match reader {
Ok(_) => println!(" * file '{}' opened successfully.", filename),
Err(e) => println!("{:?}", e.raw_os_error()),
}
输出:
Some(2)
也可以看看:
关于error-handling - 有没有办法从std::io::Error获取OS错误代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66212606/
我是一名优秀的程序员,十分优秀!