From 7a90148507612973eeea84929a1f68672f419c83 Mon Sep 17 00:00:00 2001 From: Minho Date: Mon, 29 Jan 2018 13:10:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AF=BC=E5=87=BA=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E8=B7=AF=E5=BE=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/book_result.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/models/book_result.go b/models/book_result.go index ec80c3aa..3a457bdd 100644 --- a/models/book_result.go +++ b/models/book_result.go @@ -191,12 +191,15 @@ func (m *BookResult) Converter(sessionId string) (ConvertBookResult, error) { docxpath := filepath.Join(outputPath, "book.docx") //先将转换的文件储存到临时目录 - tempOutputPath := filepath.Join(os.TempDir(),"sessionId") //filepath.Abs(filepath.Join("cache", sessionId)) + tempOutputPath := filepath.Join(os.TempDir(),sessionId) //filepath.Abs(filepath.Join("cache", sessionId)) os.MkdirAll(outputPath, 0766) os.MkdirAll(tempOutputPath, 0766) - + defer func(p string) { + os.RemoveAll(p) + }(tempOutputPath) + if utils.FileExists(pdfpath) && utils.FileExists(epubpath) && utils.FileExists(mobipath) && utils.FileExists(docxpath) { convertBookResult.EpubPath = epubpath convertBookResult.MobiPath = mobipath @@ -329,9 +332,7 @@ func (m *BookResult) Converter(sessionId string) (ConvertBookResult, error) { return convertBookResult, err } beego.Info("文档转换完成:" + m.BookName) - defer func(p string) { - os.RemoveAll(p) - }(tempOutputPath) + utils.CopyFile(mobipath, filepath.Join(tempOutputPath, "output", "book.mobi")) utils.CopyFile(pdfpath, filepath.Join(tempOutputPath, "output", "book.pdf"))