返回 DeepSeek-Reasonix
move_noreplace_other.go
根目录 / internal / tool / builtin / move_noreplace_other.go
1 //go:build !darwin && !linux && !windows
2
3 package builtin
4
5 import "fmt"
6
7 func renameNoReplace(src, dst string) error {
8 return fmt.Errorf("atomic no-replace move is unavailable on this platform")
9 }
10
10 lines GO