13
os.walk ()를 사용하여 파이썬에서 디렉토리를 재귀 적으로 순회
루트 디렉토리에서 다른 모든 디렉토리로 이동하여 동일하게 인쇄하고 싶습니다. 내 코드는 다음과 같습니다. #!/usr/bin/python import os import fnmatch for root, dir, files in os.walk("."): print root print "" for items in fnmatch.filter(files, "*"): print "..." + items print "" 그리고 여기 내 O / P가 있습니다 : . ...Python_Notes ...pypy.py …