local: return fs.ErrorDirNot found from About and Purge
Before this a stat error was returned which wasn't very helpful.
This commit is contained in:
parent
d2ad293fae
commit
52247e9a9f
2 changed files with 8 additions and 0 deletions
|
@ -4,6 +4,7 @@ package local
|
|||
|
||||
import (
|
||||
"context"
|
||||
"os"
|
||||
"syscall"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
@ -15,6 +16,9 @@ func (f *Fs) About(ctx context.Context) (*fs.Usage, error) {
|
|||
var s syscall.Statfs_t
|
||||
err := syscall.Statfs(f.root, &s)
|
||||
if err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
return nil, fs.ErrorDirNotFound
|
||||
}
|
||||
return nil, errors.Wrap(err, "failed to read disk usage")
|
||||
}
|
||||
bs := int64(s.Bsize) // nolint: unconvert
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue