mirror of
https://github.com/rclone/rclone
synced 2024-10-31 20:16:42 +01:00
18 lines
283 B
Go
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
|
|
}
|