python实现自动整理文件

作者:多好一次 时间:2021-03-04 14:15:46 

前言:

平时工作没有养成分类的习惯,整个桌面杂乱无章都是文档和资料,几乎快占满整个屏幕了。所以必须要整理一下了,今天我们来看下用python如何批量将不同后缀的文件移动到同一文件夹。

演示效果:

  • 使用前

python实现自动整理文件

  • 使用后

python实现自动整理文件

代码:

# # -*- coding:utf-8 -*-
import os
import glob
import shutil
import tkinter
import tkinter.filedialog
from datetime import datetime

def start():
? ? root = tkinter.Tk()
? ? root.withdraw()
? ? dirname = tkinter.filedialog.askdirectory(parent=root,initialdir="/",title='请选择文件夹')
? ? return dirname

# 定义一个文件字典,不同的文件类型,属于不同的文件夹
file_dict = {
? ? "图片": ["jpeg", "jpg", "tiff", "gif", "bmp", "png", "bpg", "svg", "heif", "psd"],
? ? "视频": ["avi", "flv", "wmv", "mov", "mp4", "webm", "vob", "mng", "qt", "mpg", "mpeg", "3gp", "mkv"],
? ? "音频": ["aac", "aa", "aac", "dvf", "m4a", "m4b", "m4p", "mp3", "msv", "ogg", "oga", "raw", "vox", "wav", "wma"],
? ? "文档": ["oxps", "epub", "pages", "docx", "doc", "fdf", "ods", "odt", "pwi", "xsn", "xps", "dotx", "docm", "dox",
"rvg", "rtf", "rtfd", "wpd", "xls", "xlsx","xlsm","ppt", "pptx", "csv", "pdf", "md","xmind"],
? ? "压缩文件": ["a", "ar", "cpio", "iso", "tar", "gz", "rz", "7z", "dmg", "rar", "xar", "zip"],
? ? "文本": ["txt", "in", "out","json","xml","log"],
? ? "程序脚本": ["py", "html5", "html", "htm", "xhtml", "cpp", "java", "css","sql"],?
? ? '可执行程序': ['exe', 'bat', 'lnk', 'sys', 'com','apk'],
? ? '字体文件': ['eot', 'otf', 'fon', 'font', 'ttf', 'ttc', 'woff', 'woff2','shx'],
? ? '工程图文件':['bak','dwg','dxf','dwl','dwl2','stp','SLDPRT','ipj','ipt','idw']
}

# 定义一个函数,传入每个文件对应的后缀。判断文件是否存在于字典file_dict中;
# 如果存在,返回对应的文件夹名;如果不存在,将该文件夹命名为"未知分类";
def JudgeFile(suffix):
? ? for name, type_list in file_dict.items():
? ? ? ? if suffix.lower() in type_list:
? ? ? ? ? ? return name
? ? return "未知分类"

if __name__ == '__main__':
? ? try:
? ? ? ? while True:
? ? ? ? ? ? path = start()
? ? ? ? ? ? print("---->路径是: ",path)
? ? ? ? ? ? if path == "":
? ? ? ? ? ? ? ? print("没有选择路径!")
? ? ? ? ? ? ? ? break
? ? ? ? ? ? # 递归获取 "待处理文件路径" 下的所有文件和文件夹。
? ? ? ? ? ? startTime = datetime.now().second
? ? ? ? ? ? for file in glob.glob(f"{path}/**/*", recursive=True):
? ? ? ? ? ? ? ? # 由于我们是对文件分类,这里需要挑选出文件来。
? ? ? ? ? ? ? ? if os.path.isfile(file):
? ? ? ? ? ? ? ? ? ? # 由于isfile()函数,获取的是每个文件的全路径。这里再调用basename()函数,直接获取文件名;
? ? ? ? ? ? ? ? ? ? file_name = os.path.basename(file)
? ? ? ? ? ? ? ? ? ? suffix = file_name.split(".")[-1]
? ? ? ? ? ? ? ? ? ? # 判断 "文件名" 是否在字典中。
? ? ? ? ? ? ? ? ? ? name = JudgeFile(suffix)
? ? ? ? ? ? ? ? ? ? # 根据每个文件分类,创建各自对应的文件夹。
? ? ? ? ? ? ? ? ? ? if not os.path.exists(f"{path}\\{name}"):
? ? ? ? ? ? ? ? ? ? ? ? os.mkdir(f"{path}\\{name}")
? ? ? ? ? ? ? ? ? ? ? ? print('path-->',name)
? ? ? ? ? ? ? ? ? ? # 将文件复制到各自对应的文件夹中。
? ? ? ? ? ? ? ? ? ? # shutil.copy(file, f"{path}\\{name}")
? ? ? ? ? ? ? ? ? ? # 将文件移动到各自对应的文件夹中。
? ? ? ? ? ? ? ? ? ? shutil.move(file, f"{path}\\{name}")
? ? ? ? ? ? endTime = datetime.now().second
? ? ? ? ? ? countTime= endTime-startTime
? ? ? ? ? ? print("---->已经整理完成。共花费 {} s".format(countTime))
? ? ? ? ? ? a = input('---->请按回车键退出:')
? ? ? ? ? ? if a == '':
? ? ? ? ? ? ? ? break
? ? except BaseException:
? ? ? ? print('存在重复的文件!')

执行起来很简单,只要写完程序,点击程运行,等待弹出窗口,选择需要整理的文件夹即可。

如果觉得以上代码觉得复杂,可以尝试以下更为简单的程序。

如何实现文件自动分类?

同一目录下存在很多不同类型的资源条件

  • 1 .分类

  • 2.创建分类目录

  • 3.移动文件资源

import os
import shutil
import tkinter
import tkinter.filedialog
from datetime import datetime

def start():
? ? root = tkinter.Tk()
? ? root.withdraw()
? ? dirname = tkinter.filedialog.askdirectory(parent=root,initialdir="/",title='请选择文件夹')
? ? return dirname

# 源文件存在路径
src_dir=start()
# 分类资源存在路径
dest_dir=src_dir
# 判断目录是否存在
if not os.path.exists(dest_dir):
? ? os.mkdir(dest_dir)
# 源目录分析
files=os.listdir(src_dir)
for item in files:
? ? src_path=os.path.join(src_dir,item)
? ? # 判断状态
? ? if os.path.isfile(src_path):
? ? ? ? #如果是文件,进入代码块
? ? ? ? # 判断文件资源的类型
? ? ? ? ndir = item.split('.')[-1]
? ? ? ? desc_path=os.path.join(dest_dir,ndir)
? ? ? ? # 创建分类目录
? ? ? ? if not os.path.exists(desc_path):
? ? ? ? ? ? # 如果分类子目录不存在,创建
? ? ? ? ? ? os.mkdir(desc_path)
? ? ? ? shutil.move(src_path,desc_path)

来源:https://blog.csdn.net/weixin_42750611/article/details/124051648

标签:python,自动,整理,文件
0
投稿

猜你喜欢

  • CentOS 6/7环境下通过yum安装php7的方法

    2023-11-23 11:08:02
  • Django框架 信号调度原理解析

    2022-05-14 20:04:46
  • oracle 触发器 学习笔记

    2009-05-24 19:57:00
  • PHP和JS之间的数据交互并处理

    2023-05-25 00:57:08
  • 推荐9款很棒的网页绘制图表JavaScript框架脚本

    2009-04-15 12:13:00
  • 批量替换 MySQL 指定字段中的字符串

    2024-01-18 22:17:23
  • python写入已存在的excel数据实例

    2021-05-17 15:08:17
  • Golang应用执行Shell命令实战

    2024-05-22 10:29:20
  • django formset实现数据表的批量操作的示例代码

    2023-10-10 15:20:21
  • Mango Cache缓存管理库TinyLFU源码解析

    2023-09-02 12:27:51
  • python中if嵌套命令实例讲解

    2022-03-11 21:52:51
  • Python读取stdin方法实例

    2022-09-07 19:03:00
  • Python切片用法实例教程

    2023-09-28 15:26:17
  • 好用的Python编辑器WingIDE的使用经验总结

    2022-01-15 06:23:10
  • ADO.NET通用数据库访问类

    2024-01-28 03:26:19
  • Mysql 设置boolean类型的操作

    2024-01-24 04:49:40
  • MySQL数据库中删除重复记录的方法总结[推荐]

    2024-01-13 07:13:45
  • python装饰器代替set get方法实例

    2023-01-25 15:40:37
  • Redis有序集合类型的操作_动力节点Java学院整理

    2024-01-27 23:06:47
  • Goland 2020或2019软件版本去掉a...或fmt...提示的方法

    2024-04-25 15:06:44
  • asp之家 网络编程 m.aspxhome.com