Python如何将一个文件夹下的文件按文件名中的日期,建立日期路径,分天放入对应日期的文件夹/文件按日期分类

该Python程序通过遍历指定源目录,使用正则表达式从文件名中提取日期信息,然后将文件移动到按照年月日结构的相应目标子目录。如果目标目录不存在,它会先创建。
摘要由CSDN通过智能技术生成

文件名是**G20240226* *代表通配

-- coding: utf-8 --

import os
import shutil
import re

def main():
source_directory = “/A”
destination_directory = “/”

try:
    file_list = os.listdir(source_directory)
except FileNotFoundError:
    print("Error: Source directory '{}' not found.".format(source_directory))
    return

for file_name in file_list:
    # 使用正则表达式从文件名中提取日期信息
    match = re.search(r'G(\d{4})(\d{2})(\d{2})', file_name)
    if match:
        year, month, day = match.groups()
        year = int(year)
        month = int(month)
        day = int(day)
        
        destination_path = os.path.join(destination_directory, str(year), str(month).zfill(2), str(day).zfill(2))
        
        # 如果目标文件夹不存在,则创建
        try:
            os.makedirs(destination_path, exist_ok=True)
        except OSError as e:
            print("Error: Failed to create directory '{}': {}".format(destination_path, e))
            continue
        
        try:
            # 将文件移动到目标文件夹
            shutil.move(os.path.join(source_directory, file_name), destination_path)
            print("Moved file '{}' to '{}'.".format(file_name, destination_path))
        except IOError as e:
            print("Error: Failed to move file '{}': {}".format(file_name, e))
            continue

if name == “main”:
main()

以下是python2.7的写法 服务器默认

-- coding: utf-8 --

import os
import shutil
import re

def main():
# 源目录路径
source_directory = “/A”
# 目标根目录路径
destination_directory = “/”

try:
    file_list = os.listdir(source_directory)
except OSError:
    print("Error: Source directory '{}' not found.".format(source_directory))
    return

for file_name in file_list:
    # 使用正则表达式从文件名中提取日期信息
    match = re.search(r'G(\d{4})(\d{2})(\d{2})', file_name)
    if match:
        year, month, day = match.groups()
        year = int(year)
        month = int(month)
        day = int(day)
        
        destination_path = os.path.join(destination_directory, str(year), str(month).zfill(2), str(day).zfill(2))
        
        # 如果目标文件夹不存在,则创建
        if not os.path.exists(destination_path):
            try:
                os.makedirs(destination_path)
            except OSError as e:
                print("Error: Failed to create directory '{}': {}".format(destination_path, e))
                continue
        
        try:
            # 将文件移动到目标文件夹
            shutil.move(os.path.join(source_directory, file_name), destination_path)
            print("Moved file '{}' to '{}'.".format(file_name, destination_path))
        except IOError as e:
            print("Error: Failed to move file '{}': {}".format(file_name, e))
            continue

if name == “main”:
main()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

腹有诗书气自华777

基础过滤

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值