github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/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  }