mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2025-02-17 19:19:15 +01:00
Delete old_data_check.py
This commit is contained in:
parent
551a506cc3
commit
e501c1b46b
@ -1,27 +0,0 @@
|
||||
import os
|
||||
import shutil
|
||||
|
||||
def file_check(original_dir, new_dir):
|
||||
|
||||
if os.path.isdir(original_dir):
|
||||
for file in os.listdir(original_dir):
|
||||
shutil.move(os.path.join(original_dir, file), os.path.join(new_dir, file))
|
||||
|
||||
if len(os.listdir(original_dir)) == 0:
|
||||
shutil.rmtree(original_dir)
|
||||
|
||||
def remove_unneeded_yamls(demucs_dir):
|
||||
|
||||
for file in os.listdir(demucs_dir):
|
||||
if file.endswith('.yaml'):
|
||||
if os.path.isfile(os.path.join(demucs_dir, file)):
|
||||
os.remove(os.path.join(demucs_dir, file))
|
||||
|
||||
def remove_temps(remove_dir):
|
||||
|
||||
if os.path.isdir(remove_dir):
|
||||
try:
|
||||
shutil.rmtree(remove_dir)
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user