Allow multiple paths in mkdir and remove

This commit is contained in:
Elara 2021-11-23 13:35:18 -08:00
parent b2ffb2062a
commit c9c00e0072
1 changed files with 5 additions and 5 deletions

View File

@ -19,12 +19,12 @@ func (c *Client) Rename(old, new string) error {
return nil
}
func (c *Client) Remove(path string) error {
func (c *Client) Remove(paths ...string) error {
_, err := c.request(types.Request{
Type: types.ReqTypeFS,
Data: types.ReqDataFS{
Type: types.FSTypeDelete,
Files: []string{path},
Files: paths,
},
})
if err != nil {
@ -33,12 +33,12 @@ func (c *Client) Remove(path string) error {
return nil
}
func (c *Client) Mkdir(path string) error {
func (c *Client) Mkdir(paths ...string) error {
_, err := c.request(types.Request{
Type: types.ReqTypeFS,
Data: types.ReqDataFS{
Type: types.FSTypeMkdir,
Files: []string{path},
Files: paths,
},
})
if err != nil {
@ -86,7 +86,7 @@ func (c *Client) WriteFile(path, data string) error {
Data: types.ReqDataFS{
Type: types.FSTypeRead,
Files: []string{path},
Data: data,
Data: data,
},
})
if err != nil {