update
This commit is contained in:
parent
d3dff54b04
commit
d60f2a4aec
@ -7,13 +7,13 @@ from pathlib import Path
|
|||||||
import subprocess
|
import subprocess
|
||||||
import re
|
import re
|
||||||
|
|
||||||
source_path = Path('/mnt/Download/finished/')
|
# source_path = Path('/mnt/Download/finished/')
|
||||||
dest_path = '/mnt/Download/PostProcess/'
|
# dest_path = '/mnt/Download/PostProcess/'
|
||||||
|
|
||||||
section_folders = ['4K-Movies', '4K-Series', 'Movies', 'Series']
|
section_folders = ['4K-Movies', '4K-Series', 'Movies', 'Series']
|
||||||
|
|
||||||
# source_path = 'C:/Test/finished'
|
source_path = 'C:/Test/finished'
|
||||||
# dest_path = "C:/Test/PostProcess"
|
dest_path = "C:/Test/PostProcess"
|
||||||
|
|
||||||
|
|
||||||
print("Checking if rar files and unraring...")
|
print("Checking if rar files and unraring...")
|
||||||
@ -22,6 +22,7 @@ for root, dirs, files in os.walk(source_path):
|
|||||||
for file in files:
|
for file in files:
|
||||||
rar_file = glob(f"{os.path.join(root, '')}*rar")
|
rar_file = glob(f"{os.path.join(root, '')}*rar")
|
||||||
if rar_file:
|
if rar_file:
|
||||||
|
print(f"Found rar file {rar_file}")
|
||||||
subprocess.run(["/usr/bin/unrar", 'e', rar_file[0], '-idq', ''])
|
subprocess.run(["/usr/bin/unrar", 'e', rar_file[0], '-idq', ''])
|
||||||
|
|
||||||
print("Deleting rar, sfv, nfo files...")
|
print("Deleting rar, sfv, nfo files...")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user