mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
修复文件上传错误
This commit is contained in:
parent
95c63fb1fb
commit
ff9f2a07b1
@ -57,6 +57,7 @@ func RegisterDataBase() {
|
||||
if strings.HasPrefix(database,"./") {
|
||||
database = filepath.Join(WorkingDirectory,string(database[1:]))
|
||||
}
|
||||
|
||||
dbPath := filepath.Dir(database)
|
||||
os.MkdirAll(dbPath, 0777)
|
||||
|
||||
|
@ -13,6 +13,8 @@ import (
|
||||
// 将图片保存到指定的路径
|
||||
func SaveImage(p string, src image.Image) error {
|
||||
|
||||
os.MkdirAll(filepath.Dir(p),0666)
|
||||
|
||||
f, err := os.OpenFile(p, os.O_SYNC|os.O_RDWR|os.O_CREATE, 0666)
|
||||
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user