本文简要介绍rust语言中 Function std::fs::read
的用法。
用法
pub fn read<P: AsRef<Path>>(path: P) -> Result<Vec<u8>>
将文件的全部内容读入字节向量。
这是使用 File::open
和 read_to_end
的便捷函数,导入较少且没有中间变量。
错误
如果path
不存在,此函数将返回错误。根据 OpenOptions::open
也可能返回其他错误。
如果在读取 io::ErrorKind::Interrupted
以外的错误时遇到错误,它也会返回错误。
例子
use std::fs;
use std::net::SocketAddr;
fn main() -> Result<(), Box<dyn std::error::Error + 'static>> {
let foo: SocketAddr = String::from_utf8_lossy(&fs::read("address.txt")?).parse()?;
Ok(())
}
相关用法
- Rust read用法及代码示例
- Rust read_to_string用法及代码示例
- Rust read_link用法及代码示例
- Rust ready用法及代码示例
- Rust read_unaligned用法及代码示例
- Rust read_dir用法及代码示例
- Rust read_volatile用法及代码示例
- Rust rename用法及代码示例
- Rust remove_dir_all用法及代码示例
- Rust remove_file用法及代码示例
- Rust resume_unwind用法及代码示例
- Rust repeat用法及代码示例
- Rust remove_dir用法及代码示例
- Rust remove_var用法及代码示例
- Rust repeat_with用法及代码示例
- Rust replace用法及代码示例
- Rust range用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
- Rust BTreeMap.last_key_value用法及代码示例
- Rust str.make_ascii_uppercase用法及代码示例
- Rust u128.checked_pow用法及代码示例
- Rust usize.wrapping_mul用法及代码示例
- Rust AtomicU8.fetch_sub用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::fs::read。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。