Fix: permission error while creating folder recursively

pull/289/head
HFO4 4 years ago
parent e07b09186d
commit 816b537787

@ -56,7 +56,7 @@ func (handler Driver) Put(ctx context.Context, file io.ReadCloser, dst string, s
// 如果目标目录不存在,创建
basePath := filepath.Dir(dst)
if !util.Exists(basePath) {
err := os.MkdirAll(basePath, 0644)
err := os.MkdirAll(basePath, 0744)
if err != nil {
util.Log().Warning("无法创建目录,%s", err)
return err

Loading…
Cancel
Save