1
mirror of https://github.com/rclone/rclone synced 2024-10-31 20:16:42 +01:00
rclone/cmd/selfupdate/writable_windows.go
2021-09-09 20:43:59 +03:00

18 lines
283 B
Go

//go:build windows && !noselfupdate
// +build windows,!noselfupdate
package selfupdate
import (
"os"
)
func writable(path string) bool {
info, err := os.Stat(path)
const UserWritableBit = 128
if err == nil {
return info.Mode().Perm()&UserWritableBit != 0
}
return false
}