Improve error message

This commit is contained in:
Kousuke Takaki 2020-12-14 16:11:01 +09:00
parent 3ab911afa1
commit 6bcabcbb6b
1 changed files with 4 additions and 1 deletions

View File

@ -110,7 +110,10 @@ pub fn copy_files_except_ext(
for entry in fs::read_dir(from)? { for entry in fs::read_dir(from)? {
let entry = entry?; let entry = entry?;
let metadata = entry.path().metadata()?; let metadata = entry
.path()
.metadata()
.with_context(|| format!("Failed to read {:?}", entry.path()))?;
// If the entry is a dir and the recursive option is enabled, call itself // If the entry is a dir and the recursive option is enabled, call itself
if metadata.is_dir() && recursive { if metadata.is_dir() && recursive {