mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 06:27:11 +08:00
24 lines
489 B
Go
24 lines
489 B
Go
package src
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
)
|
|
|
|
// Delete will remove specified file/folder from Yandex Disk
|
|
func (c *Client) Delete(remotePath string, permanently bool) error {
|
|
|
|
values := url.Values{}
|
|
values.Add("permanently", strconv.FormatBool(permanently))
|
|
values.Add("path", remotePath)
|
|
urlPath := "/v1/disk/resources?" + values.Encode()
|
|
fullURL := RootAddr
|
|
if urlPath[:1] != "/" {
|
|
fullURL += "/" + urlPath
|
|
} else {
|
|
fullURL += urlPath
|
|
}
|
|
|
|
return c.PerformDelete(fullURL)
|
|
}
|