1
mirror of https://github.com/rclone/rclone synced 2025-03-23 05:44:23 +01:00

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