1
0
mirror of https://github.com/ciromattia/kcc synced 2026-05-24 16:32:10 +00:00

disk usage warning reccomends using temp directory option (#1353)

This commit is contained in:
Alex Xu
2026-05-22 11:55:42 -07:00
committed by GitHub
parent ca6b3b7611
commit 4102643110

View File

@@ -903,9 +903,11 @@ def getWorkFolder(afile, workdir=None):
else:
check_path = gettempdir()
DISK_WARNING = "Not enough disk space to perform conversion. Try Temp Directory option."
if os.path.isdir(afile):
if disk_usage(check_path)[2] < getDirectorySize(afile) * 2.5:
raise UserWarning("Not enough disk space to perform conversion.")
raise UserWarning(DISK_WARNING)
try:
copytree(afile, fullPath)
sanitizePermissions(fullPath)
@@ -915,7 +917,7 @@ def getWorkFolder(afile, workdir=None):
raise UserWarning("Failed to prepare a workspace.")
elif os.path.isfile(afile):
if disk_usage(check_path)[2]< os.path.getsize(afile) * 2.5:
raise UserWarning("Not enough disk space to perform conversion.")
raise UserWarning(DISK_WARNING)
if afile.lower().endswith('.pdf'):
if not os.path.exists(fullPath):
os.makedirs(fullPath)