mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
Refactor: extract fn 'make_dirs'
This commit is contained in:
parent
ea287e0db2
commit
873c98dddb
2 changed files with 11 additions and 10 deletions
|
|
@ -43,10 +43,7 @@ class Consumer:
|
|||
self.consume = consume
|
||||
self.scratch = scratch
|
||||
|
||||
try:
|
||||
os.makedirs(self.scratch)
|
||||
except FileExistsError:
|
||||
pass
|
||||
make_dirs(self.scratch)
|
||||
|
||||
if not self.consume:
|
||||
raise ConsumerError(
|
||||
|
|
@ -245,3 +242,11 @@ class Consumer:
|
|||
with open(doc, "rb") as f:
|
||||
checksum = hashlib.md5(f.read()).hexdigest()
|
||||
return Document.objects.filter(checksum=checksum).exists()
|
||||
|
||||
|
||||
def make_dirs(*dirs):
|
||||
for dir in dirs:
|
||||
try:
|
||||
os.makedirs(dir)
|
||||
except FileExistsError:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue