-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdelete.go
55 lines (44 loc) · 1.2 KB
/
delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package directories
import (
"context"
"fmt"
"net/http"
"strings"
"github.com/hashicorp/go-azure-sdk/sdk/client"
)
type DeleteResponse struct {
HttpResponse *client.Response
}
// Delete removes the specified empty directory
// Note that the directory must be empty before it can be deleted.
func (c Client) Delete(ctx context.Context, shareName, path string) (resp DeleteResponse, err error) {
if shareName == "" {
return resp, fmt.Errorf("`shareName` cannot be an empty string")
}
if strings.ToLower(shareName) != shareName {
return resp, fmt.Errorf("`shareName` must be a lower-cased string")
}
if path == "" {
return resp, fmt.Errorf("`path` cannot be an empty string")
}
opts := client.RequestOptions{
ContentType: "application/xml; charset=utf-8",
ExpectedStatusCodes: []int{
http.StatusAccepted,
},
HttpMethod: http.MethodDelete,
OptionsObject: directoriesOptions{},
Path: fmt.Sprintf("/%s/%s", shareName, path),
}
req, err := c.Client.NewRequest(ctx, opts)
if err != nil {
err = fmt.Errorf("building request: %+v", err)
return
}
resp.HttpResponse, err = req.Execute(ctx)
if err != nil {
err = fmt.Errorf("executing request: %+v", err)
return
}
return
}