Make sure source file gets removed after conversion in unoConvertDocument

This commit is contained in:
neko 2025-01-28 09:15:52 +05:00
parent 92726434b8
commit 0135bfb1ab
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ async def unoConvertDocument(sourceDocumentPath, sourceDocumentName):
outputDocumentPath = Path(outputDir) / Path(f"{sourceDocumentName}").with_suffix('.pdf')
Path(outputDir).mkdir(parents=True, exist_ok=True) # Ensure directory exists
subprocess.run(args=[unoconvertPath, "--convert-to", "pdf", sourceDocumentPath, outputDocumentPath])
subprocess.run(args=["rm", sourceDocumentPath], check=True)
return outputDocumentPath
async def convertDocumentOneShot(sourceDocumentPath, sourceDocumentName):