以下是代码:
extern crate tempdir;
use std::env;
use tempdir::*;
#[test]
fn it_installs_component() {
let current_dir = env::current_dir().unwrap();
let home_dir = env::home_dir().unwrap();
let tmp_dir = env::temp_dir();
println!("The current directory is: {}", current_dir.display());
println!("The home directory is: {}", home_dir.display());
println!("The temporary directory is: {}", tmp_dir.display());
let stage_dir = TempDir::new_in(tmp_dir.as_path(), "Components-Test");
let components_dir = TempDir::new_in(stage_dir.unwrap().path(), "Components");
// This is "offending line"
// let components_make_dir = TempDir::new_in(stage_dir.unwrap().path(), "Components.make");
println!("---- {:?}", components_dir.unwrap().path());
//println!("---- {:?}", components_make_dir.unwrap().path());
}
如果违规行已注释掉,则代码编译正常。如果我取消注释,我开始收到错误:
error[E0382]: use of moved value: `stage_dir`
--> src/main.rs:21:51
|
18 | let components_dir = TempDir::new_in(stage_dir.unwrap().path(), "Components");
| --------- value moved here
...
21 | let components_make_dir = TempDir::new_in(stage_dir.unwrap().path(), "Components.make");
| ^^^^^^^^^ value used here after move
|
= note: move occurs because `stage_dir` has type `std::result::Result<tempdir::TempDir, std::io::Error>`, which does not implement the `Copy` trait
我理解问题是我第一次使用时移动了stage_dir
,但我无法看到如何在这两个子文件夹之间共享stage_dir
,因为我需要访问他们都在我的考试中。
我尝试使用&stage_dir
,但这会产生一些其他警告,对我来说更加模糊。
答案 0 :(得分:5)
TempDir::new
会给你一个Result<TempDir>
。您每次尝试打开它,而不是打开它一次以获得TempDir
,然后共享 。
所以改变
let stage_dir = TempDir::new_in(tmp_dir.as_path(), "Components-Test");
到
let stage_dir = TempDir::new_in(tmp_dir.as_path(), "Components-Test").unwrap();
代替。