目录
代码
总体思路:
- 首先确定是否两个文件夹的路径,通过
os.listdir
列出其中一个文件夹下的所有文件。 - 得到某个源文件的路径后,可以通过
os.path.splitext
分割文件名及其路径,然后再拼接得到目标文件的路径。 - 假设两个文件夹下的文件都是存在的,那么最好使用
os.path.exists
判断下拼接的数据是否正确。 - 接着读取源文件,将需要的信息用data字符串保存起来。
- 最后读取目标文件,会用
a+
追加写入到文件末尾,然后将data写入即可。
# 输入根目录文件
def parseSrcToDest(url):
srcPath = url + r"\src" # 源文件
destPath = url + r"\dest" # 目标文件
# 1.列出srcPath下所有文件
fileNames = os.listdir(srcPath)
for file in fileNames:
srcFile = srcPath + "\\" + file # src文件夹下某个文件的路径
key, ext = os.path.splitext(os.path.basename(srcFile)) # 分割出文件名和后缀
destFile = destPath + "\\node-" + key.split("-")[1] + ext # 目标文件文件名,按自己需求修改
# 2.以下用于检测目标文件是否存在,如果是新建可以删除
if not os.path.exists(destFile):
continue
# 3.先读取源文件,然后自己需求处理
data = ""
with open(srcFile, encoding="utf-8") as f:
lines = f.readlines()
for line in lines:
if line.find("->") == -1:
continue
data = data + line
# 4.打开目标文件,写入data信息,a+表示文件指针指向末尾
with open(destPath, "a+", encoding="utf-8") as f:
f.write(data)