mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-23 19:39:05 +00:00
19 lines
373 B
Go
19 lines
373 B
Go
package osutil
|
|
|
|
import (
|
|
"os"
|
|
"runtime"
|
|
)
|
|
|
|
func Rename(from, to string) error {
|
|
if runtime.GOOS == "windows" {
|
|
os.Chmod(to, 0666) // Make sure the file is user writeable
|
|
err := os.Remove(to)
|
|
if err != nil && !os.IsNotExist(err) {
|
|
return err
|
|
}
|
|
}
|
|
defer os.Remove(from) // Don't leave a dangling temp file in case of rename error
|
|
return os.Rename(from, to)
|
|
}
|