mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Use match
This commit is contained in:
parent
b75cc2a90d
commit
1d7e6ce71c
1 changed files with 9 additions and 5 deletions
|
@ -137,12 +137,16 @@ pub async fn copy(
|
|||
} else if is_dir {
|
||||
let contents = get_contents_at(source.to_path_buf(), options).await?;
|
||||
|
||||
if options.overwrite && target.exists() {
|
||||
let metadata = fs::metadata(target).await?;
|
||||
if metadata.is_file() {
|
||||
fs::remove_file(target).await?;
|
||||
} else if metadata.is_dir() {
|
||||
if options.overwrite {
|
||||
let (is_dir, is_file) = match fs::metadata(&target).await {
|
||||
Ok(meta) => (meta.is_dir(), meta.is_file()),
|
||||
Err(e) if e.kind() == ErrorKind::NotFound => (false, false),
|
||||
Err(e) => return Err(e.into()),
|
||||
};
|
||||
if is_dir {
|
||||
fs::remove_dir_all(target).await?;
|
||||
} else if is_file {
|
||||
fs::remove_file(target).await?;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue