美文网首页python技巧
python遍历文件夹(os模块)读取文件夹里面的所有文件

python遍历文件夹(os模块)读取文件夹里面的所有文件

作者: 陆_志东 | 来源:发表于2018-08-23 10:11 被阅读0次
    import os
    def read_file_dir():
        for root,dirs,files in os.walk("./ner_data_2"):
            for file in files:
                file_path = os.path.join(root,file)
    

    相关文章

      网友评论

        本文标题:python遍历文件夹(os模块)读取文件夹里面的所有文件

        本文链接:https://www.haomeiwen.com/subject/nfrpiftx.html