From 7eac2071a70034596bb800f674325db84426db04 Mon Sep 17 00:00:00 2001 From: rouggy Date: Wed, 26 Jan 2022 18:48:08 +0700 Subject: [PATCH] update --- filebot.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/filebot.py b/filebot.py index 1a88da7..5a322bd 100644 --- a/filebot.py +++ b/filebot.py @@ -24,14 +24,11 @@ for root, dirs, files in os.walk(source_path): if rar_file: subprocess.run(["/usr/bin/unrar", 'e', rar_file[0], '-idq', '']) -# print("Deleting rar, sfv, nfo files...") -# for root, dirs, files in os.walk(source_path): -# for dir in dirs: -# if re.search('sample', dir, re.IGNORECASE) or re.search('proof', dir, re.IGNORECASE): -# shutil.rmtree(dir) -# for file in files: -# if re.search(r'\.r\d{2,3}', file) or file.endswith('.rar') or file.endswith('.sfv') or file.endswith('.nfo') or re.search('sample', file, re.IGNORECASE): -# os.remove(os.path.join(root, file)) +print("Deleting rar, sfv, nfo files...") +for root, dirs, files in os.walk(source_path): + for dir in dirs: + if re.search('sample', dir, re.IGNORECASE) or re.search('proof', dir, re.IGNORECASE): + shutil.rmtree(dir) for root, dirs, files in os.walk(source_path): for dir in dirs: