mirror of
https://github.com/rclone/rclone
synced 2025-03-21 03:04:23 +01:00
17 lines
233 B
Go
17 lines
233 B
Go
![]() |
// +build windows
|
||
|
|
||
|
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
|
||
|
}
|