网站链接:Java全栈工程师 | 以实例驱动学习 | how2j.cn
#!/usr/bin/env python
# coding: utf-8
# 读取HTML文件夹中的.html文件
import os
# html的路径
html_dir = 'C://2010html'
# pdf的路径
pdf_dirs = 'C://2010'
# 已转换完新建存储的路径
old_pdf = 'C://2010oldpdf'
files= os.listdir(html_dir) # 获取HTML文件名称
if not os.path.exists(old_pdf):
os.makedirs(old_pdf)
print("目录创建成功!")
old_html = [] # 已转换完的名称列表
for file in files:
if file.endswith('html'):
old_html.append(file.replace(".html","")) # 添加进列表
# 遍历PDF文件夹,移动文件
for file in os.listdir(pdf_dirs):
if file.replace(".pdf","") in old_html:
old_path = os.path.join(pdf_dirs, file)
new_path = os.path.join(old_pdf,file)
os.rename(old_path,new_path)
print("移动成功")
可安装Anaconda3,然后搜索Spyder方可开始编写Python