This commit is contained in:
2025-12-07 13:56:33 +08:00
parent 49f54b04cd
commit c83985cd02
22 changed files with 2732 additions and 0 deletions

9
py/utils.py Normal file
View File

@@ -0,0 +1,9 @@
import os
def work_py(input_folder, output_folder):
if not os.path.exists(output_folder):
print("not exists")
for filename in os.listdir(input_folder):
target_folder = os.path.join(output_folder, filename)
from_folder = os.path.join(input_folder, filename)