rclone/backend/local/remove_other.go
2021-09-09 20:43:59 +03:00

12 lines
176 B
Go

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