我想写一个程序,将写一个文件在2个步骤。 在程序运行之前,文件可能不存在。文件名是固定的。
问题是 OpenOptions.new().write()
可能会失败。在这种情况下,我想调用一个自定义函数 trycreate()
。其思想是创建文件,而不是打开它并返回句柄。因为文件名是固定的,所以 trycreate()
没有参数,我不能设置返回值的生命周期。
我该如何解决这个问题?
use std::io::Write;
use std::fs::OpenOptions;
use std::path::Path;
fn trycreate() -> &OpenOptions {
let f = OpenOptions::new().write(true).open("foo.txt");
let mut f = match f {
Ok(file) => file,
Err(_) => panic!("ERR"),
};
f
}
fn main() {
{
let f = OpenOptions::new().write(true).open(b"foo.txt");
let mut f = match f {
Ok(file) => file,
Err(_) => trycreate("foo.txt"),
};
let buf = b"test1\n";
let _ret = f.write(buf).unwrap();
}
println!("50%");
{
let f = OpenOptions::new().append(true).open("foo.txt");
let mut f = match f {
Ok(file) => file,
Err(_) => panic!("append"),
};
let buf = b"test2\n";
let _ret = f.write(buf).unwrap();
}
println!("Ok");
}