rclone/backend/local/remove_other.go

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)
}