#方法4:非递归 #!/bin/python # #site:www.jbxue.com import os for dirpath, dirnames, filenames in os.walk('c:\\winnt'): print 'Directory', dirpath for filename in filenames: print ' File', filename
另外,判断文件与目录是否存在:
复制代码代码示例:
import os os.path.isfile('test.txt') #如果不存在就返回False os.path.exists(directory) #如果目录不存在就返回False