python 获取一个文件夹内(包括子文件夹)所有文件的名字和路径
import os
dir = "e:\\"
for root, dirs, files in os.walk(dir):
for file in files:
print os.path.join(root,file)
或:
import os
path = r'e:\case'
fns = [os.path.join(root,fn) for root, dirs, files in os.walk(path
本文实例讲述了python清除指定目录内所有文件中scr ipt的方法。分享给大家供大家参考。具体如下:
将脚本存储为stripscr ipts.py
调用语法 : python stripscr ipts.py
使用范例 : python stripscr ipts.py d:\myfiles
# Hello, this is a scr ipt written in Python. See http://www.pyhon.org
import os,sys,string,re
mes