The file name is in garbled characters. After downloading, the order of the pictures is messed up.
文件名竟然用乱码。 下载后,图片顺序是乱的。
#写了一段程序批量重命名,python 3.12可用 #Wrote a program to batch rename, available in Python 3.12 #与 E-Hentai Downloader 配套使用 #For use with E-Hentai Downloader
import os
a=[] with open("info.txt","r",encoding="utf-8") as f: for line in f.readlines(): line=line.strip("n") if "Image " in line: a.append(line)
name=[] for i in a: name=i.split(": ") oldname=name[1] Extension=oldname.split(".") newname=str(name[0])+"."+str(Extension[1]) os.rename(oldname,newname)
哦,TAB 没了,请自己补全 Oh, TAB is gone, please complete it yourself
哦,TAB 没了,请自己补全 Oh, TAB is gone, please complete it yourself