V1
This commit is contained in:
9
py/utils.py
Normal file
9
py/utils.py
Normal 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)
|
||||
Reference in New Issue
Block a user