2 Star 0 Fork 0

shine_forever / pyTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
list_dir.py 231 Bytes
一键复制 编辑 原始数据 按行查看 历史
shine_forever 提交于 2014-06-08 15:15 . add list_dir.py use os.walk module!
#! /usr/bin/python
#coding:utf
__author__ = 'guolt'
import os
def list_files(dir):
for dir,path,listfiles in os.walk(dir):
for file in listfiles:
print os.path.join(dir,file)
list_files('/usr/local')
Python
1
https://gitee.com/shine_forever/pyTest.git
git@gitee.com:shine_forever/pyTest.git
shine_forever
pyTest
pyTest
master

搜索帮助