mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-06 21:30:53 +08:00
This commit is contained in:
parent
ebb813d50d
commit
33ea08dcd0
@ -462,7 +462,7 @@ func RenameAsset(oldPath, newName string) (err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
newPath := util.AssetName(newName) + filepath.Ext(oldPath)
|
newPath := "assets/" + util.AssetName(newName) + filepath.Ext(oldPath)
|
||||||
if err = gulu.File.Copy(filepath.Join(util.DataDir, oldPath), filepath.Join(util.DataDir, newPath)); nil != err {
|
if err = gulu.File.Copy(filepath.Join(util.DataDir, oldPath), filepath.Join(util.DataDir, newPath)); nil != err {
|
||||||
util.LogErrorf("copy asset [%s] failed: %s", oldPath, err)
|
util.LogErrorf("copy asset [%s] failed: %s", oldPath, err)
|
||||||
return
|
return
|
||||||
@ -485,7 +485,7 @@ func RenameAsset(oldPath, newName string) (err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !bytes.Contains(data, []byte(oldPath)) {
|
if !bytes.Contains(data, []byte(oldPath)) {
|
||||||
return
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
data = bytes.Replace(data, []byte(oldPath), []byte(newPath), -1)
|
data = bytes.Replace(data, []byte(oldPath), []byte(newPath), -1)
|
||||||
|
Loading…
Reference in New Issue
Block a user