2015-12-07 05:01:03 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-09-19 23:30:08 +02:00
|
|
|
return c.PerformDelete(fullURL)
|
2015-12-07 05:01:03 +01:00
|
|
|
}
|