1 Star 0 Fork 0

LunarSF/PythonScriptSamples

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BuildIndexFile.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
#code= gbk
from fileinput import filename
import os, sys
def SaveFile(fullPathName, content):
fw = open(fullPathName, "wt", encoding="gbk")
fw.write(content)
fw.close()
def BuildHtmlIndexFile(dirFullPath):
htmlText = ""
try:
list = os.listdir(dirFullPath)
except:
print("Error! Can not read file.")
else:
for fileName in list:
filePath = os.path.join(dirFullPath, fileName)
if (os.path.isdir(filePath)):
htmlText += "<p style='color:Blue;'>" + filePath + "</p>\r\n"
htmlText += "<ol>\r\n"
htmlText += BuildHtmlIndexFile(filePath)
htmlText += "</ol>\r\n"
else:
lowerName = fileName.lower()
if(lowerName[-4:] == ".png" or lowerName[-4:] == ".jpg" or lowerName[-5:] == ".jpeg"):
htmlText += "<li><a href='file:///" + filePath + "'>" + fileName + "</a></li>\r\n"
return htmlText
dirFullName = os.path.split(os.path.realpath(sys.argv[0]))[0]
htmlText ="<html><body>\r\n<ol>\r\n" + BuildHtmlIndexFile(dirFullName) + "\r\n</ol>"
SaveFile(dirFullName + "\\_index.html", htmlText);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lunarsf/python-script-samples.git
git@gitee.com:lunarsf/python-script-samples.git
lunarsf
python-script-samples
PythonScriptSamples
master

搜索帮助