Initial commit

This commit is contained in:
Junhan Chang
2025-04-17 15:19:47 +08:00
parent a47a3f5c3a
commit c78ac482d8
262 changed files with 39871 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import os
import shutil
for item in os.listdir("../.."):
if item.startswith("."):
continue
if item.endswith(".bat"):
continue
if item in ("setup.py", "unilabos", "config"):
continue
print("****", item)
if os.path.isfile(item) or os.path.islink(item):
os.remove(item)
elif os.path.isdir(item):
shutil.rmtree(item)
print(os.listdir("../.."))