This commit is contained in:
caiwx86 2023-01-15 19:53:05 +08:00
parent d05897e11f
commit 16fa338f12
2 changed files with 10 additions and 4 deletions

View File

@ -293,12 +293,14 @@ class comicInfo():
@classmethod @classmethod
def getNewCBZComicChapter(cls): def getNewCBZComicChapter(cls):
c_path = cls.getDirCBZComicChapter() c_dir = cls.getDirCBZComicChapter()
s_path = cls.getSortDirCBZComicChapter() s_dir = cls.getSortDirCBZComicChapter()
c_path = cls.getDirCBZComicChapter()+".CBZ"
s_path = cls.getSortDirCBZComicChapter()+".CBZ"
if os.path.exists(c_path) and s_path != None: if os.path.exists(c_path) and s_path != None:
shutil.move(c_path, s_path) shutil.move(c_path, s_path)
print("文件已移动至:", s_path) print("文件已移动至:", s_path)
return s_path return s_dir
@classmethod @classmethod
def getDirComic(cls): def getDirComic(cls):

View File

@ -34,7 +34,11 @@ class baseComic:
for chapter in chapters: for chapter in chapters:
comicInfo.setChapterIndex(chapter_index) comicInfo.setChapterIndex(chapter_index)
comicInfo.setChapterName(chapter) comicInfo.setChapterName(chapter)
comicInfo.getNewCBZComicChapter() c_img_path = comicInfo.getDirCBZComicChapter()+".jpg"
s_img_path = comicInfo.getNewCBZComicChapter()+".jpg"
if os.path.exists(c_img_path):
shutil.move(s_img_path)
print(f"已从{c_img_path}移至:{s_img_path}")
chapter_index = chapter_index + 1 chapter_index = chapter_index + 1
return None return None