fix: use is_dir in more places where Windows paths might be handled incorrectly
This commit is contained in:
parent
2eee6daea0
commit
726c7af42b
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ fn real_main() -> i32 {
|
|||
}
|
||||
}
|
||||
|
||||
if (*file.name()).ends_with('/') {
|
||||
if file.is_dir() {
|
||||
println!("File {} extracted to \"{}\"", i, outpath.display());
|
||||
fs::create_dir_all(&outpath).unwrap();
|
||||
} else {
|
||||
|
|
|
@ -34,7 +34,7 @@ fn real_main() -> i32 {
|
|||
}
|
||||
}
|
||||
|
||||
if (*file.name()).ends_with('/') {
|
||||
if file.is_dir() {
|
||||
println!(
|
||||
"Entry {} is a directory with name \"{}\"",
|
||||
i,
|
||||
|
|
Loading…
Add table
Reference in a new issue