update
This commit is contained in:
parent
328ad85d21
commit
9d7fc39c3c
16
filebot.py
16
filebot.py
@ -24,14 +24,14 @@ 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 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))
|
||||
|
||||
for root, dirs, files in os.walk(source_path):
|
||||
for dir in dirs:
|
||||
|
Loading…
x
Reference in New Issue
Block a user