Created
May 23, 2012 17:01
-
-
Save sytkov/2776381 to your computer and use it in GitHub Desktop.
Рекурсивный обход директорий
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding=utf-8 | |
import os | |
for name in os.listdir ( '.' ) : | |
if '.' not in name : | |
for dir , subDirs , files in os.walk ( name ) : | |
for file in files : | |
print file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment