1 Star 0 Fork 0

J-star/BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pcsfile.go 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
package pcsweb
import (
"github.com/iikira/BaiduPCS-Go/baidupcs"
"github.com/iikira/BaiduPCS-Go/internal/pcsconfig"
"io"
"net/http"
)
func fileList(w http.ResponseWriter, r *http.Request) {
r.ParseForm()
fpath := r.Form.Get("path")
dataReadCloser, err := pcsconfig.Config.ActiveUserBaiduPCS().PrepareFilesDirectoriesList(fpath, baidupcs.DefaultOrderOptions)
if err != nil {
w.Write((&ErrInfo{
ErrroCode: 1,
ErrorMsg: err.Error(),
}).JSON())
return
}
defer dataReadCloser.Close()
io.Copy(w, dataReadCloser)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/j-star/BaiduPCS-Go.git
git@gitee.com:j-star/BaiduPCS-Go.git
j-star
BaiduPCS-Go
BaiduPCS-Go
v3.5.6

搜索帮助