10 lines
210 B
Go
10 lines
210 B
Go
//go:build linux
|
|
|
|
package fileops
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func renameDirectoryNoReplace(src, dst string) error {
|
|
return unix.Renameat2(unix.AT_FDCWD, src, unix.AT_FDCWD, dst, unix.RENAME_NOREPLACE)
|
|
}
|