提交 e07b0918 编写于 作者: H HFO4

Modify: use 644 permission when creating a new physical directory (#274)

上级 8c7d0754
......@@ -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, 0700)
err := os.MkdirAll(basePath, 0644)
if err != nil {
util.Log().Warning("无法创建目录,%s", err)
return err
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册