Fix: permission error while creating folder recursively
This commit is contained in:
parent
e07b09186d
commit
816b537787
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue