vsphere-influxdb-go/vendor/github.com/influxdata/influxdb/services/meta/file_unix.go

11 lines
200 B
Go
Raw Normal View History

2017-10-25 22:52:40 +02:00
// +build !windows
package meta
import "os"
// renameFile will rename the source to target using os function.
func renameFile(oldpath, newpath string) error {
return os.Rename(oldpath, newpath)
}