rclone/backend/local/encode_darwin.go
2020-01-16 14:40:36 +00:00

12 lines
276 B
Go

//+build darwin
package local
import "github.com/rclone/rclone/lib/encoder"
// This is the encoding used by the local backend for macOS
//
// macOS can't store invalid UTF-8, it converts them into %XX encoding
const defaultEnc = (encoder.Base |
encoder.EncodeInvalidUtf8)