Initial commit - DesignerCEP Project with Caddy deployment

This commit is contained in:
zuowei1216
2025-12-19 21:27:17 +08:00
commit 8ea58fe480
170 changed files with 47469 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import psutil
def is_coreldraw_running():
for process in psutil.process_iter(['pid', 'name']):
if process.info['name'] == "CorelDRW.exe":
return True
return False