1 Star 0 Fork 1

freely随意/BaiduPCS-Go

forked from ttpc2008/BaiduPCS-Go 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rm_mkdir.go 604 Bytes
一键复制 编辑 原始数据 按行查看 历史
konica 提交于 2018-04-19 22:21 . 优化代码结构
package baidupcs
// Remove 批量删除文件/目录
func (pcs *BaiduPCS) Remove(paths ...string) (pcsError Error) {
dataReadCloser, pcsError := pcs.PrepareRemove(paths...)
if pcsError != nil {
return
}
defer dataReadCloser.Close()
errInfo := decodeJSONError(OperationRemove, dataReadCloser)
return errInfo
}
// Mkdir 创建目录
func (pcs *BaiduPCS) Mkdir(pcspath string) (pcsError Error) {
dataReadCloser, pcsError := pcs.PrepareMkdir(pcspath)
if pcsError != nil {
return
}
defer dataReadCloser.Close()
errInfo := decodeJSONError(OperationMkdir, dataReadCloser)
return errInfo
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freelysuiyi/BaiduPCS-Go.git
git@gitee.com:freelysuiyi/BaiduPCS-Go.git
freelysuiyi
BaiduPCS-Go
BaiduPCS-Go
v3.5.3

搜索帮助

0d507c66 1850385 C8b1a773 1850385