storage: DeleteFile should return errFileNotFound for ENOENT. (#2978)

This commit is contained in:
Harshavardhana
2016-10-17 16:38:46 -07:00
committed by GitHub
parent 0ff359ca0e
commit 8d2347bc7b
3 changed files with 10 additions and 6 deletions

View File

@@ -694,6 +694,11 @@ func deleteFile(basePath, deletePath string) error {
}
// Attempt to remove path.
if err := os.Remove(preparePath(deletePath)); err != nil {
if os.IsNotExist(err) {
return errFileNotFound
} else if os.IsPermission(err) {
return errFileAccessDenied
}
return err
}
// Recursively go down the next path and delete again.