/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/fs/errors.go
17 строк
422 B
Michael Mayer
Media: Log underlying error when MIME type detection fails #5149
06 авг 2025, 10:59
06 авг 2025, 10:59
a6d8400
Код
Авторство
О чём код?
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") )