10 lines
192 B
Go
10 lines
192 B
Go
//go:build !linux
|
|
|
|
package fileops
|
|
|
|
import "fmt"
|
|
|
|
func renameDirectoryNoReplace(_, _ string) error {
|
|
return fmt.Errorf("atomic no-replace directory rename is unsupported on this platform")
|
|
}
|