gpt4 book ai didi

file-io - 打开文件返回ErrorKind::Other 'Error: Os, code: 20, message: “Not a directory”'

转载 作者:行者123 更新时间:2023-12-03 11:41:54 26 4
gpt4 key购买 nike

我正在尝试打开一个文件,如果不存在,请创建它。但是由于某种原因,我收到一条消息ErrorKind::Other"Not a directory"错误。这是我得到的完整错误:

thread 'main' panicked at 'Unknown error when opening file: Os { code: 20, kind: Other, message: "Not a directory" }', src/main.rs:53:17



这是我的代码:

let mut filepath = std::env::current_exe()?;
filepath.push("days");
filepath.set_extension("toml");

let mut file = match File::open(filepath.clone()) {
Ok(f) => f,
Err(e) => match e.kind() {
ErrorKind::NotFound => {
{
let mut create_file = File::create(filepath.clone());
create_file.write_all(...); // Dummy data
}
File::open(filepath.clone())?
},
_ => {
panic!("Unknow error when opening file: {:?}", e); // This is line 53
}
}
};

当我将文件路径打印到控制台进行检查时,我得到了 "/mnt/c/Projects/Other/random/hmdict/target/debug/hmdict/days.toml",这是正确的。

有谁知道为什么我会收到操作系统错误20“不是目录”?

PS我在Windows 10内部版本18909上运行的WSL中​​使用Rust nightly-x86_64-unknown-linux-gnu和rustc版本 1.46.0-nightly

最佳答案

问题是push创建了单独的路径。如果您的可执行位置是<what_ever>/hmdict,那么您的代码将创建一个路径<whatever>/hmdict/days.toml。显然,此路径不存在,因为hmdict是可执行文件而不是目录。

关于file-io - 打开文件返回ErrorKind::Other 'Error: Os, code: 20, message: “Not a directory”',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62303615/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com