use USER_DIR instead of deprecated UserDir
This commit is contained in:
parent
3f1d69c6ef
commit
078f22020e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ fn main()
|
|||
let outpath = Path::new(file.file_name.as_slice());
|
||||
let dirname = Path::new(outpath.dirname());
|
||||
|
||||
std::io::fs::mkdir_recursive(&dirname, std::io::UserDir).unwrap();
|
||||
std::io::fs::mkdir_recursive(&dirname, std::io::USER_DIR).unwrap();
|
||||
|
||||
let mut outfile = std::io::File::create(&outpath);
|
||||
let mut reader = zipcontainer.read_file(file);
|
||||
|
|
Loading…
Add table
Reference in a new issue