python 递归输出文件
Posted python之恋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 递归输出文件相关的知识,希望对你有一定的参考价值。
import os
def print_directory_contents(sPath):
for sChild in os.listdir(sPath):
sChildPath = os.path.join(sPath, sChild)
if os.path.isdir(sChildPath):
print_directory_contents(sChildPath)
else:
print(sChildPath)
print_directory_contents(‘F:\GZ\mxgController‘)
本文首发于python黑洞网,博客园同步更新
以上是关于python 递归输出文件的主要内容,如果未能解决你的问题,请参考以下文章
python分析apache和nginx日志文件输出访客ip列表的代码