摘要: 1 # -*- coding: utf-8 -*- 2 3 4 import os 5 6 7 fileList = [] 8 dzList = [] 9 10 def GetFileList(path):11 List = []12 for root,dirs,files in os.walk(path):13 for fn in files:14 List.append(root + os.sep + fn)15 return List16 17 def GetUrlPath(List):18 UrlPath... 阅读全文
posted @ 2014-01-08 15:25 r3call 阅读(288) 评论(0) 推荐(0) 编辑