mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
增加更多的输出日志
This commit is contained in:
parent
26ee92c92b
commit
5f64530ccf
@ -458,15 +458,15 @@ func (this *Converter) convertToEpub() (err error) {
|
|||||||
filepath.Join(this.OutputPath, "content.epub"),
|
filepath.Join(this.OutputPath, "content.epub"),
|
||||||
filepath.Join(this.OutputPath, output, "book.epub"),
|
filepath.Join(this.OutputPath, output, "book.epub"),
|
||||||
}
|
}
|
||||||
cmd := exec.Command(ebookConvert, args...)
|
//cmd := exec.Command(ebookConvert, args...)
|
||||||
|
//
|
||||||
|
//if this.Debug {
|
||||||
|
// fmt.Println(cmd.Args)
|
||||||
|
//}
|
||||||
|
//fmt.Println("正在转换EPUB文件", args[0])
|
||||||
|
//return cmd.Run()
|
||||||
|
|
||||||
if this.Debug {
|
return filetil.CopyFile(args[0],args[1])
|
||||||
fmt.Println(cmd.Args)
|
|
||||||
}
|
|
||||||
fmt.Println("正在转换EPUB文件", args[0])
|
|
||||||
return cmd.Run()
|
|
||||||
|
|
||||||
//return filetil.CopyFile(filepath.Join(this.OutputPath, "content.epub"),filepath.Join(this.OutputPath, output, "book.epub"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//转成mobi
|
//转成mobi
|
||||||
|
@ -232,9 +232,7 @@ func (m *BookResult) Converter(sessionId string) (ConvertBookResult, error) {
|
|||||||
beego.Error("创建目录失败 => ",tempOutputPath,err)
|
beego.Error("创建目录失败 => ",tempOutputPath,err)
|
||||||
}
|
}
|
||||||
|
|
||||||
defer func(p string) {
|
defer os.RemoveAll(strings.TrimSuffix(tempOutputPath,"source"))
|
||||||
os.RemoveAll(p)
|
|
||||||
}(tempOutputPath)
|
|
||||||
|
|
||||||
if filetil.FileExists(pdfpath) && filetil.FileExists(epubpath) && filetil.FileExists(mobipath) && filetil.FileExists(docxpath) {
|
if filetil.FileExists(pdfpath) && filetil.FileExists(epubpath) && filetil.FileExists(mobipath) && filetil.FileExists(docxpath) {
|
||||||
convertBookResult.EpubPath = epubpath
|
convertBookResult.EpubPath = epubpath
|
||||||
|
Loading…
Reference in New Issue
Block a user