1
mirror of https://github.com/rclone/rclone synced 2024-09-15 11:38:53 +02:00

Add -o uid=-1 -o gid=-1 for Windows/WinFsp

This commit is contained in:
Nick Craig-Wood 2017-05-09 14:03:37 +01:00
parent 31f76aa464
commit b4466bd9b1

View File

@ -179,6 +179,13 @@ func mountOptions(device string, mountpoint string) (options []string) {
options = append(options, "-o", "noapplexattr")
}
// Windows options
if runtime.GOOS == "windows" {
// These cause WinFsp to mean the current user
options = append(options, "-o", "uid=-1")
options = append(options, "-o", "gid=-1")
}
if allowNonEmpty {
options = append(options, "-o", "nonempty")
}