本文简要介绍rust语言中 Struct std::fs::OpenOptions
的用法。
用法
pub struct OpenOptions(_);
可用于配置文件打开方式的选项和标志。
此构建器公开了配置如何打开 File
以及允许对打开的文件进行哪些操作的能力。 File::open
和 File::create
方法是使用此构建器的常用选项的别名。
一般来说,当使用 OpenOptions
时,您将首先调用 OpenOptions::new
,然后将调用链接到设置每个选项的方法,然后调用 OpenOptions::open
,传递您尝试打开的文件的路径。这会给你一个 io::Result
,里面有一个 File
,你可以进一步操作。
例子
打开要读取的文件:
use std::fs::OpenOptions;
let file = OpenOptions::new().read(true).open("foo.txt");
打开一个文件进行读写,如果它不存在则创建它:
use std::fs::OpenOptions;
let file = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.open("foo.txt");
相关用法
- Rust OpenOptionsExt.custom_flags用法及代码示例
- Rust OpenOptions.append用法及代码示例
- Rust OpenOptions.new用法及代码示例
- Rust OpenOptions.create用法及代码示例
- Rust OpenOptions.write用法及代码示例
- Rust OpenOptionsExt.access_mode用法及代码示例
- Rust OpenOptions.open用法及代码示例
- Rust OpenOptionsExt.security_qos_flags用法及代码示例
- Rust OpenOptionsExt.mode用法及代码示例
- Rust OpenOptionsExt.share_mode用法及代码示例
- Rust OpenOptions.create_new用法及代码示例
- Rust OpenOptions.truncate用法及代码示例
- Rust OpenOptionsExt.attributes用法及代码示例
- Rust OpenOptions.read用法及代码示例
- Rust Option.unwrap_or_default用法及代码示例
- Rust Option.as_deref_mut用法及代码示例
- Rust Option.get_or_insert_with用法及代码示例
- Rust Option.iter_mut用法及代码示例
- Rust Option.or_else用法及代码示例
- Rust Option.unwrap_unchecked用法及代码示例
- Rust Option.get_or_insert用法及代码示例
- Rust Option.expect用法及代码示例
- Rust Option.get_or_insert_default用法及代码示例
- Rust Option.insert用法及代码示例
- Rust Option.map_or用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Struct std::fs::OpenOptions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。