preallocate.go 184 B

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