jmrenamer: print if a renamed filename already exists
This commit is contained in:
parent
d5f00adc95
commit
094c14a799
|
@ -59,6 +59,8 @@ fn main() -> io::Result<()> {
|
||||||
if src_path.exists() {
|
if src_path.exists() {
|
||||||
fs::rename(src_path, dest_path)?;
|
fs::rename(src_path, dest_path)?;
|
||||||
println!("moved {} -> {}", src_path.display(), dest_path.display());
|
println!("moved {} -> {}", src_path.display(), dest_path.display());
|
||||||
|
} else if dest_path.exists() {
|
||||||
|
println!("{} already exists", dest_path.display());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue