update
This commit is contained in:
parent
76e72db446
commit
b67e5779ca
10
filebot.py
10
filebot.py
@ -6,13 +6,13 @@ import os
|
|||||||
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,7 +22,7 @@ for section in section_folders:
|
|||||||
rar_file = glob(f"{os.path.join(source_path, section, dir, '')}*rar")
|
rar_file = glob(f"{os.path.join(source_path, section, dir, '')}*rar")
|
||||||
if rar_file:
|
if rar_file:
|
||||||
print(f"Found rar file {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', ''])
|
||||||
|
|
||||||
for section in section_folders:
|
for section in section_folders:
|
||||||
if os.path.exists(os.path.join(source_path, section)):
|
if os.path.exists(os.path.join(source_path, section)):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user