#!/usr/bin/python import os for path, dirs, files in os.walk('.'): print 'Path:' , path for i in dirs: print ' dir:', i for i in files:
確定! 回上一頁