我正在尝试访问文件夹并读取其中的文本文件。最终我要将它们构建成一个基本字典,以转储到JSON中,但是文件正在发生。我收到一条错误消息:
FileNotFoundError: [Errno 2] No such file or directory: ___
问题是,这段代码正在处理我的测试文件...所以也许它是某种文件问题?
import json
import os
for file in os.listdir("filepath"):
with open ('%s.json' % file, 'w') as fp:
file = f.read()
f = open(file, 'r')
print (f)
这些是没有'找到/读取'的文本文件: https://drive.google.com/open?id=0B4zJC6biI6jERDFHSzZvUUJaRE0
是否有其他人遇到此问题/找到了可行的解决方案?