0

我正在尝试访问一个文件夹并读取其中的文本文件。最终,我将把它们构建成一个基本字典以转储到 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

有没有其他人遇到过这个问题/找到了可能有效的解决方案?

4

0 回答 0