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

11 lines
200 B
Go

// +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)
}