mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
18 lines
422 B
Go
18 lines
422 B
Go
package fs
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
)
|
|
|
|
// Generic errors that may occur when accessing files and folders:
|
|
var (
|
|
EOF = io.EOF
|
|
ErrUnexpectedEOF = io.ErrUnexpectedEOF
|
|
ErrShortWrite = io.ErrShortWrite
|
|
ErrShortBuffer = io.ErrShortBuffer
|
|
ErrNoProgress = io.ErrNoProgress
|
|
ErrInvalidWrite = errors.New("invalid write result")
|
|
ErrPermissionDenied = errors.New("permission denied")
|
|
)
|