testing storage, DocumentPath

pull/3/head
Eugen Ciur 2020-05-04 16:05:23 +02:00
parent 6808b3f0a3
commit 5f3c0c374f
1 changed files with 16 additions and 4 deletions

View File

@ -1,11 +1,23 @@
import os import os
import logging
import shutil import shutil
logger = logging.getLogger(__name__)
def safe_to_delete(place, safe_extensions): def safe_to_delete(place, safe_extensions):
raise Exception( if not os.path.exists(place):
"Trying to recursively delete unsafe path" logging.warning(
) f"Trying to delete not exising folder"
f" {place}"
)
return False
for root, dirs, files in os.walk(place):
for name in files:
print(name)
return False
class Storage: class Storage:
@ -39,7 +51,7 @@ class Storage:
# where OCRed information and generated thumbnails # where OCRed information and generated thumbnails
# are stored # are stored
abs_dirname_results = self.path( abs_dirname_results = self.path(
doc_path.abs_dirname_results doc_path.dirname_results
) )
# Before recursively deleting everything in folder # Before recursively deleting everything in folder
# double check that there are only # double check that there are only