Fixed the error in copy_files_except_ext #55
This commit is contained in:
parent
103048c0d1
commit
0a50d6b33f
|
@ -150,7 +150,12 @@ pub fn copy_files_except_ext(from: &Path, to: &Path, recursive: bool, ext_blackl
|
||||||
if metadata.is_dir() && recursive {
|
if metadata.is_dir() && recursive {
|
||||||
if entry.path() == to.to_path_buf() { continue }
|
if entry.path() == to.to_path_buf() { continue }
|
||||||
debug!("[*] is dir");
|
debug!("[*] is dir");
|
||||||
|
|
||||||
|
// check if output dir already exists
|
||||||
|
if !to.join(entry.file_name()).exists() {
|
||||||
try!(fs::create_dir(&to.join(entry.file_name())));
|
try!(fs::create_dir(&to.join(entry.file_name())));
|
||||||
|
}
|
||||||
|
|
||||||
try!(copy_files_except_ext(
|
try!(copy_files_except_ext(
|
||||||
&from.join(entry.file_name()),
|
&from.join(entry.file_name()),
|
||||||
&to.join(entry.file_name()),
|
&to.join(entry.file_name()),
|
||||||
|
|
Loading…
Reference in New Issue