python抓取文件夹的所有文件


Posted in Python onFebruary 27, 2018

本文实例为大家分享了python抓取文件夹的所有文件的具体代码,供大家参考,具体内容如下

#!/user/bin/python 
# -*- coding:utf8 -*- 
 
import Basic 
import os 
 
##################################################### 
########    Input      #### 
folder = "D:\\安装包" 
folder = folder.encode("gbk") 
 
########    Global      #### 
fileList = [] 
allFiles = [] 
tree = [] 
level = 0 
##################################################### 
 
try: 
 if folder is None or len(folder) == 0: 
  folder = os.curdir 
 
 if os.path.isdir(folder): 
  childFile = os.listdir(folder) 
  fileList = ["%s" % (folder+os.path.sep+f) for f in childFile] 
 
  node = {'file':folder, 'level':level} 
  tree.append(node) 
 
  while fileList is not None and len(fileList) > 0: 
   allFiles.append(""+fileList[0]) 
 
   if os.path.isdir(fileList[0]): 
    childFile = os.listdir(fileList[0]) 
 
    if childFile is not None and len(childFile) > 0: 
     fileList = fileList + ["%s" % (fileList[0]+os.path.sep+ft) for ft in childFile] 
    else: 
     pass 
   else: 
    pass 
 
   fileList.pop(0) 
 
  print "\n".join(["%s" % f for f in allFiles]) 
 else: 
  print 'not folder, no child' 
 
except Exception,x: 
 print x

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中的filter()函数的用法
Apr 27 Python
Python for Informatics 第11章之正则表达式(二)
Apr 21 Python
老生常谈Python基础之字符编码
Jun 14 Python
深入理解Python中的*重复运算符
Oct 28 Python
Python标准模块--ContextManager上下文管理器的具体用法
Nov 27 Python
python字符串的方法与操作大全
Jan 30 Python
numpy使用fromstring创建矩阵的实例
Jun 15 Python
python:解析requests返回的response(json格式)说明
Apr 30 Python
Python的collections模块真的很好用
Mar 01 Python
Python爬虫之爬取哔哩哔哩热门视频排行榜
Apr 28 Python
OpenCV-Python使用cv2实现傅里叶变换
Jun 09 Python
python3操作redis实现List列表实例
Aug 04 Python
python数据分析数据标准化及离散化详解
Feb 26 #Python
批量将ppt转换为pdf的Python代码 只要27行!
Feb 26 #Python
python 3利用Dlib 19.7实现摄像头人脸检测特征点标定
Feb 26 #Python
python3利用Dlib19.7实现人脸68个特征点标定
Feb 26 #Python
python微信跳一跳系列之棋子定位颜色识别
Feb 26 #Python
python微信跳一跳系列之棋子定位像素遍历
Feb 26 #Python
python3.6+opencv3.4实现鼠标交互查看图片像素
Feb 26 #Python
You might like
php for 循环语句使用方法详细说明
2010/05/09 PHP
yii2 页面底部加载css和js的技巧
2016/04/21 PHP
py文件转exe时包含paramiko模块出错解决方法
2016/08/12 PHP
php扩展开发入门demo示例
2019/09/23 PHP
jquery实现图片渐变切换兼容ie6/Chrome/Firefox
2013/08/02 Javascript
jQuery插件jQuery-JSONP开发ajax调用使用注意事项
2013/11/22 Javascript
Javascript学习指南
2014/12/01 Javascript
js实现鼠标划过给div加透明度的方法
2015/05/25 Javascript
jQuery.form.js的使用详解
2017/06/14 jQuery
详解ES6之async+await 同步/异步方案
2017/09/19 Javascript
windows下wxPython开发环境安装与配置方法
2014/06/28 Python
Python中防止sql注入的方法详解
2017/02/25 Python
Python实现树的先序、中序、后序排序算法示例
2017/06/23 Python
python3调用R的示例代码
2018/02/23 Python
python爬虫 使用真实浏览器打开网页的两种方法总结
2018/04/21 Python
python3实现指定目录下文件sha256及文件大小统计
2019/02/25 Python
用Python批量把文件复制到另一个文件夹的实现方法
2019/08/16 Python
详解python3中用HTMLTestRunner.py报ImportError: No module named 'StringIO'如何解决
2019/08/27 Python
详解python uiautomator2 watcher的使用方法
2019/09/09 Python
python安装scipy的步骤解析
2019/09/28 Python
python中seaborn包常用图形使用详解
2019/11/25 Python
css3动画事件—webkitAnimationEnd与计时器time事件
2013/01/31 HTML / CSS
英国水族馆和池塘用品购物网站:Warehouse Aquatics
2019/08/29 全球购物
写一个在SQL Server创建表的SQL语句
2012/03/10 面试题
五年级英语教学反思
2014/01/31 职场文书
汽车广告策划方案
2014/05/31 职场文书
自主招生自荐信格式范文
2015/03/25 职场文书
给下属加薪申请报告
2015/05/15 职场文书
搞笑婚庆主持词
2015/06/29 职场文书
2016元旦文艺汇演主持词(开场白+结束语)
2015/12/03 职场文书
2019秋季运动会口号
2019/06/25 职场文书
干货:企业内部人才推荐奖励方案!
2019/07/09 职场文书
Nginx服务器如何设置url链接
2021/03/31 Servers
python使用matplotlib绘制图片时x轴的刻度处理
2021/08/30 Python
JavaScript高级程序设计之基本引用类型
2021/11/17 Javascript
python神经网络学习 使用Keras进行简单分类
2022/05/04 Python