github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/local/remove_other.go (about) 1 //+build !windows 2 3 package local 4 5 import "os" 6 7 // Removes name, retrying on a sharing violation 8 func remove(name string) error { 9 return os.Remove(name) 10 }