文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

基于Python怎么实现文件分类器

2023-07-05 19:59

关注

本篇内容主要讲解“基于Python怎么实现文件分类器”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“基于Python怎么实现文件分类器”吧!

通过自定义需要整理的文件目录,将该目录下面的全部文件按照文件格式完成分类操作。

基于Python怎么实现文件分类器

实现逻辑使用的python技术栈就是os、glob、shutil三个标准库的综合运用,完成自动化的文件整理。

分别将这三个文件处理模块导入代码块中,进入后续的开发操作。

# It imports the os module.import os# Shutil is a module that provides a number of high-level operations on files and collections of files.import shutil# The glob module finds all the pathnames matching a specified pattern according to the rules used by the Unix shell,# although results are returned in arbitrary order. No tilde expansion is done, but *, ?, and character ranges expressed# with [] will be correctly matched.import globimport sys

将需要分类的文件目录uncatched_dir以及分类后文件存放目录target_dir设置为可以手动输入的方式。

# Asking the user to input the path of the directory that contains the files to be sorted.uncatched_dir = input('请输入待分类的文件路径:\n')# It checks if the uncatched_dir is empty.if uncatched_dir.strip() == '':    print('待分类的文件夹路径不能为空!')    sys.exit()# Asking the user to input the path of the directory that contains the files to be sorted.target_dir = input('请输入分类后文件存放的目标路径:\n')# It checks if the target_dir is empty.if target_dir.strip() == '':    print('分类后的文件存放路径不能为空!')    sys.exit()

基于Python怎么实现文件分类器

检验输入的分类后文件存放目录路径是否存在,因为很可能是输入一个新的路径,不存在时则新建一个该路径。

# It checks if the target_dir exists. If it does not exist, it creates a new directory in the current working directory.if not os.path.exists(target_dir):    # It creates a new directory in the current working directory.    os.mkdir(target_dir)

定义一个文件移动数量的变量file_move_num,以及一个新建的文件夹数量的变量dir_new_num用于记录文件整理的结果记录。

# A variable that is used to count the number of files that have been moved.file_move_num = 0# A variable that is used to count the number of new directories that have been created.dir_new_num = 0

遍历需要整理的文件夹目录uncatched_dir,对该目录下面的所有类型的文件进行自动整理操作。

# A for loop that iterates through all the files in the uncatched_dir directory.for file_ in glob.glob(f'{uncatched_dir}*', recursive=True):    # It checks if the file is a file.    if os.path.isfile(file_):        # It gets the file name of the file.        file_name = os.path.basename(file_)        # Checking if the file name contains a period.        if '.' in file_name:            # Getting the suffix of the file.            suffix_name = file_name.split('.')[-1]        else:            # Used to classify files that do not have a suffix.            suffix_name = 'others'        # It checks if the directory exists. If it does not exist, it creates a new directory in the current working        # directory.        if not os.path.exists(f'{target_dir}/{suffix_name}'):            # It creates a new directory in the current working directory.            os.mkdir(f'{target_dir}/{suffix_name}')            # Adding 1 to the variable dir_new_num.            dir_new_num += 1        # It copies the file to the target directory.        shutil.copy(file_, f'{target_dir}/{suffix_name}')        # Adding 1 to the variable file_move_num.        file_move_num += 1

注意:为了避免移动文件夹而造成的异常,尤其是系统盘,因此这里用的是复制,也就是shutil.copy函数使用。

最后,将文件分类数量、文件夹新建数量使用print函数进行打印即可。

print(f'整理完成,有{file_move_num}个文件分类到了{dir_new_num}个文件夹中!\n')input('输入任意键关闭窗口...')

为了避免程序执行完成后直接将命令窗口关闭,上面使用了input函数来保持窗口暂停的效果。

基于Python怎么实现文件分类器

基于Python怎么实现文件分类器

到此,相信大家对“基于Python怎么实现文件分类器”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯