没有合适的资源?快使用搜索试试~ 我知道了~
python程序实现文件自动分类
需积分: 5 22 下载量 42 浏览量
2018-05-11
10:17:04
上传
评论 2
收藏 980B TXT 举报
温馨提示
python程序实现某一文件夹内不同文件类型自动分类,输入excel表格中
资源推荐
资源详情
资源评论
'''
Created on 2018年5月7日
@author: 2545519972@qq.com
'''
import os
import openpyxl
path = 'C:\\Users\\25455\\Desktop\\实验数据' #存放文件夹的路径
count = 0
filedic = {}
for fileName in os.listdir(path):
try:
for subfile in os.listdir(path + '\\' + fileName):
count = count + 1
name = os.path.splitext(subfile)[1]
if name in filedic:
filedic[name] += 1
else:
filedic[name] = 1
#print(str(count) + ' ' + name)
except:
continue
print(filedic)
#在当前目录下要先创立一个excel
wb = openpyxl.load_workbook('工作簿1.xlsx')
sheet = wb.get_sheet_by_name('Sheet1')
sheet['A1'] = '文件类型'
sheet['B1'] = '数量'
Created on 2018年5月7日
@author: 2545519972@qq.com
'''
import os
import openpyxl
path = 'C:\\Users\\25455\\Desktop\\实验数据' #存放文件夹的路径
count = 0
filedic = {}
for fileName in os.listdir(path):
try:
for subfile in os.listdir(path + '\\' + fileName):
count = count + 1
name = os.path.splitext(subfile)[1]
if name in filedic:
filedic[name] += 1
else:
filedic[name] = 1
#print(str(count) + ' ' + name)
except:
continue
print(filedic)
#在当前目录下要先创立一个excel
wb = openpyxl.load_workbook('工作簿1.xlsx')
sheet = wb.get_sheet_by_name('Sheet1')
sheet['A1'] = '文件类型'
sheet['B1'] = '数量'
资源评论
凡先生_WHU
- 粉丝: 85
- 资源: 7
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功