mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
b259f8b752
Normally mount/cmount use `-o ro` to get the kernel to mark the fs as read only. However this is ignored by WinFsp, so in addition if `--read-only` is in effect then return EROFS ("Read only File System") from all methods which attempt to modify something.
40 lines
742 B
Go
40 lines
742 B
Go
// Cross platform errors
|
|
|
|
package mountlib
|
|
|
|
import "fmt"
|
|
|
|
// Error describes low level errors in a cross platform way
|
|
type Error byte
|
|
|
|
// NB if changing errors translateError in cmd/mount/fs.go, cmd/cmount/fs.go
|
|
|
|
// Low level errors
|
|
const (
|
|
OK Error = iota
|
|
ENOENT
|
|
ENOTEMPTY
|
|
EEXIST
|
|
ESPIPE
|
|
EBADF
|
|
EROFS
|
|
)
|
|
|
|
var errorNames = []string{
|
|
OK: "Success",
|
|
ENOENT: "No such file or directory",
|
|
ENOTEMPTY: "Directory not empty",
|
|
EEXIST: "File exists",
|
|
ESPIPE: "Illegal seek",
|
|
EBADF: "Bad file descriptor",
|
|
EROFS: "Read only file system",
|
|
}
|
|
|
|
// Error renders the error as a string
|
|
func (e Error) Error() string {
|
|
if int(e) >= len(errorNames) {
|
|
return fmt.Sprintf("Low level error %d", e)
|
|
}
|
|
return errorNames[e]
|
|
}
|