我是 python 新手,无法访问子文件夹中的数学文本文件。
这是我到目前为止写的代码:
import os, sys
for folder, sub_folders, files in os.walk(my_directory):
for special_file in files:
if special_file == 'math.txt'
file_path = os.path.join(folder, special_file)
with open(file_path, 'r+') as read_file
counter += 1
print('Reading math txt file' + str(counter))
for line in read_file:
print(line)
我无法打印math.txt
所有班级、所有学校和所有区域内的所有文件。
在我有一个合并所有文件的脚本版本之前,但有些日志文件非常大(合并 > 16GB)。