fix
This commit is contained in:
parent
6be074e647
commit
bfbd93b912
@ -99,6 +99,8 @@ class SystemUtils:
|
|||||||
try:
|
try:
|
||||||
# link到当前目录并改名
|
# link到当前目录并改名
|
||||||
tmp_path = src.parent / (dest.name + ".mp")
|
tmp_path = src.parent / (dest.name + ".mp")
|
||||||
|
if tmp_path.exists():
|
||||||
|
tmp_path.unlink()
|
||||||
tmp_path.hardlink_to(src)
|
tmp_path.hardlink_to(src)
|
||||||
# 移动到目标目录
|
# 移动到目标目录
|
||||||
shutil.move(tmp_path, dest)
|
shutil.move(tmp_path, dest)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user