1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 09:46:25 +00:00

Temporary disabling new location of tmp files

This commit is contained in:
Paweł Jastrzębski
2013-08-13 13:33:16 +02:00
parent 71d158ca45
commit e558ffd807
2 changed files with 6 additions and 4 deletions

View File

@@ -250,7 +250,6 @@ The app relies and includes the following scripts/binaries:
####3.2:
* Too big EPUB files are now splitted before conversion to MOBI
* Added experimental parser of manga webstrips
* Moved location of temporary files to increase conversion speed
* Improved error handling
## KNOWN ISSUES

View File

@@ -599,7 +599,8 @@ def genEpubStruct(path):
def getWorkFolder(afile):
if os.path.isdir(afile):
workdir = tempfile.mkdtemp('', 'KCC-TMP-', os.path.join(os.path.splitext(afile)[0], '..'))
workdir = tempfile.mkdtemp('', 'KCC-TMP-')
#workdir = tempfile.mkdtemp('', 'KCC-TMP-', os.path.join(os.path.splitext(afile)[0], '..'))
try:
os.rmdir(workdir) # needed for copytree() fails if dst already exists
fullPath = os.path.join(workdir, 'OEBPS', 'Images')
@@ -616,7 +617,8 @@ def getWorkFolder(afile):
rmtree(path)
raise UserWarning("Failed to extract images.")
else:
workdir = tempfile.mkdtemp('', 'KCC-TMP-', os.path.dirname(afile))
workdir = tempfile.mkdtemp('', 'KCC-TMP-')
#workdir = tempfile.mkdtemp('', 'KCC-TMP-', os.path.dirname(afile))
cbx = cbxarchive.CBxArchive(afile)
if cbx.isCbxFile():
try:
@@ -688,7 +690,8 @@ def getDirectorySize(start_path='.'):
def createNewTome(parentPath):
tomePathRoot = tempfile.mkdtemp('', 'KCC-TMP-', parentPath)
tomePathRoot = tempfile.mkdtemp('', 'KCC-TMP-')
#tomePathRoot = tempfile.mkdtemp('', 'KCC-TMP-', parentPath)
tomePath = os.path.join(tomePathRoot, 'OEBPS', 'Images')
os.makedirs(tomePath)
return tomePath, tomePathRoot