mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-23 22:45:20 -07:00
create_destination now in util
This commit is contained in:
parent
b6274e31f7
commit
fb45216768
1 changed files with 0 additions and 11 deletions
|
@ -129,16 +129,6 @@ def is_sample(filePath, inputName, minSampleSize):
|
||||||
return ('sample' in filePath.lower()) and (not 'sample' in inputName) and (os.path.getsize(filePath) < SIZE_CUTOFF)
|
return ('sample' in filePath.lower()) and (not 'sample' in inputName) and (os.path.getsize(filePath) < SIZE_CUTOFF)
|
||||||
|
|
||||||
|
|
||||||
def create_destination(outputDestination):
|
|
||||||
if not os.path.exists(outputDestination):
|
|
||||||
try:
|
|
||||||
Logger.info("CREATE DESTINATION: Creating destination folder: %s", outputDestination)
|
|
||||||
os.makedirs(outputDestination)
|
|
||||||
except Exception, e:
|
|
||||||
Logger.error("CREATE DESTINATION: Not possible to create destination folder: %s. Exiting", e)
|
|
||||||
sys.exit(-1)
|
|
||||||
|
|
||||||
|
|
||||||
def copy_link(source, target, useLink, outputDestination):
|
def copy_link(source, target, useLink, outputDestination):
|
||||||
create_destination(outputDestination)
|
create_destination(outputDestination)
|
||||||
if useLink:
|
if useLink:
|
||||||
|
@ -303,7 +293,6 @@ for dirpath, dirnames, filenames in os.walk(inputDirectory):
|
||||||
Logger.info("MAIN: Found compressed archive %s for file %s", fileExtention, filePath)
|
Logger.info("MAIN: Found compressed archive %s for file %s", fileExtention, filePath)
|
||||||
source = filePath
|
source = filePath
|
||||||
target = os.path.join(outputDestination, file)
|
target = os.path.join(outputDestination, file)
|
||||||
create_destination(outputDestination)
|
|
||||||
try:
|
try:
|
||||||
extractor.extract(dirpath, file, outputDestination)
|
extractor.extract(dirpath, file, outputDestination)
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue