1
0
mirror of https://github.com/rclone/rclone.git synced 2025-06-30 22:23:52 +02:00
Files
rclone/lib/file/preallocate.go

7 lines
184 B
Go
Raw Normal View History

package file
import "errors"
// ErrDiskFull is returned from PreAllocate when it detects disk full
var ErrDiskFull = errors.New("preallocate: file too big for remaining disk space")