github.com/xhghs/rclone@v1.51.1-0.20200430155106-e186a28cced8/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  }