rclone/backend/local/remove_other.go

11 lines
157 B
Go

//go:build !windows
package local
import "os"
// Removes name, retrying on a sharing violation
func remove(name string) error {
return os.Remove(name)
}