mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
24 lines
401 B
Go
24 lines
401 B
Go
//go:build !plan9
|
|
|
|
package fserrors
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
liberrors "github.com/rclone/rclone/lib/errors"
|
|
)
|
|
|
|
// IsErrNoSpace checks a possibly wrapped error to
|
|
// see if it contains a ENOSPC error
|
|
func IsErrNoSpace(cause error) (isNoSpc bool) {
|
|
liberrors.Walk(cause, func(c error) bool {
|
|
if c == syscall.ENOSPC {
|
|
isNoSpc = true
|
|
return true
|
|
}
|
|
isNoSpc = false
|
|
return false
|
|
})
|
|
return
|
|
}
|