把內(nèi)容過程中比較重要的一些內(nèi)容段備份一次跃脊,下邊內(nèi)容內(nèi)容是關于python搜索指定目錄的演示的內(nèi)容宇挫,希望對各位有較大用處。
import os
for root, dirs, files in os.walk( os.curdir ):
print( "root = " + root )
for file in files:
print( "file = " + file )
for dir in dirs:
print( "dir = " + dir )
print( "n" )
input( 'nnPress Enter to exit...' )