Files
player/Project_App_MusicPlayer/cp.py

20 lines
427 B
Python
Raw Normal View History

2025-06-27 00:32:57 +08:00
import os
import shutil
src = '.\\Objects\\Pro_App\\Music_Player.axf'
dst = '..\\output\\音乐播放器.axf'
elf = '..\\elf_reduce.exe'
if not os.path.exists(src):
print(src+' File Error!!!')
else:
if os.path.exists(dst):
os.remove(dst)
if os.path.exists(elf):
os.system(elf + ' ' + src + ' ' + dst)
else:
shutil.copy(src,dst)
os.remove(src)
print(dst+' File copy success.')