ensure the parent path's existence on x install
Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
parent
b0889cb4ed
commit
2c8759ef8a
@ -46,10 +46,10 @@ fn change_drive(s: &str) -> Option<String> {
|
||||
}
|
||||
|
||||
fn is_dir_writable_for_user(dir: &PathBuf) -> bool {
|
||||
let tmp_file = dir.join(".tmp");
|
||||
match fs::File::create(&tmp_file) {
|
||||
let tmp = dir.join(".tmp");
|
||||
match fs::create_dir_all(&tmp) {
|
||||
Ok(_) => {
|
||||
fs::remove_file(tmp_file).unwrap();
|
||||
fs::remove_dir_all(tmp).unwrap();
|
||||
true
|
||||
}
|
||||
Err(e) => {
|
||||
|
Loading…
Reference in New Issue
Block a user