码迷,mamicode.com
首页 > 编程语言 > 详细

python:文件、目录遍历器

时间:2019-10-16 17:38:33      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:odi   port   解码   imp   dump   object   file   obj   import   

#!/usr/bin/python
# -*- coding:utf-8 -*-

import os
import json

file = open(‘a.txt‘,‘w‘)
for root,dirs,files in os.walk(‘./‘):
file.write(‘root:‘ + root + ‘\n‘)
file.write(‘dirs:‘ + json.dumps(dirs) + ‘\n‘)
#json.dumps(object) 编码(把object变成json型string) json.loads(string) 解码
file.write(‘files:‘ + json.dumps(files) + ‘\n‘)
file.write(‘\n‘)
file.close()

python:文件、目录遍历器

标签:odi   port   解码   imp   dump   object   file   obj   import   

原文地址:https://www.cnblogs.com/guomengkai/p/11686818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!