目录
参考
- 参考:python.org
编译器参考
- 参考:PyCharm
日志
- 2022年09月23日12:52:54 初始版本
实用方案
多个MD文档的合并
# 使用说明:
# 1. 将本文件放置到需要合并的MD文件目录中
import os
import time
# 获取当前文件路径
path = os.path.abspath(os.path.dirname(__file__))
fileList = os.listdir(path)
contents = []
for _file in fileList:
if '.md' not in _file:
continue
md_file = os.path.join(path, _file)
with open(_file, 'r', encoding='utf-8') as file:
contents.append(file.read() + "\n")
# 新建一个文件
newFileName = time.strftime('%Y-%m-%d %H%M%S', time.localtime()) + '.md'
print(newFileName)
open(newFileName, 'x')
# 写入文件内容
with open(newFileName, 'w', encoding='utf-8') as file:
file.writelines(contents)
标签:Python,open,基础,newFileName,file,path,os,contents
From: https://www.cnblogs.com/zyjhandsome/p/16722351.html