吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1768|回复: 6
收起左侧

[Python 原创] 文件按照名称自动归类

[复制链接]
phantomxjc 发表于 2023-5-22 10:06
import  os

import shutil

def copyfile(source_path,target_path,target_path2):

    print(target_path)
    if not os.path.exists(target_path2):
        # 如果目标路径不存在原文件夹的话就创建
        os.makedirs(target_path2)

    target_path3 = target_path + '-1'

    if  os.path.exists(target_path) == True:
        print(os.path.exists(target_path))
        os.rename(target_path,target_path3)
        shutil.move(source_path, target_path)
    if os.path.exists(target_path) == False:
        print(os.path.exists(target_path))
        shutil.move(source_path, target_path)

def copyfiles():
    #文件原始位置
    LocalDir = 
    for djbh in os.listdir(LocalDir):
        local_path = os.path.join(LocalDir, djbh)
        print(djbh)
        print(local_path)
        year = djbh[0:4]
        monthday = djbh[4:8]
                #文件应存放位置上级目录
        RemoteDir =
                #文件应存放位置
        RemoteDir2 =

        copyfile(local_path, RemoteDir2,RemoteDir)

    print('copy dir finished!')

copyfiles()

免费评分

参与人数 2吾爱币 +8 热心值 +1 收起 理由
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
花盗睡鼠 + 1 我很赞同!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

ytfty 发表于 2023-5-22 11:13
这个要是能有演示的图片就更好了,功能也介绍不完整,建议补充一下
Dream漂移 发表于 2023-5-22 13:36
Raohz520 发表于 2023-5-22 13:41
Dream漂移 发表于 2023-5-22 13:36
可以弱弱的问一句,这是什么代码吗?

很明显是Python啊   对吧
netpeng 发表于 2023-5-22 14:07
感谢分享
 楼主| phantomxjc 发表于 2023-5-22 14:40
ytfty 发表于 2023-5-22 11:13
这个要是能有演示的图片就更好了,功能也介绍不完整,建议补充一下

没有研究界面哈哈  以后有机会再研究研究  
 楼主| phantomxjc 发表于 2023-5-22 14:42
Dream漂移 发表于 2023-5-22 13:36
可以弱弱的问一句,这是什么代码吗?

python哦
 楼主| phantomxjc 发表于 2023-5-22 14:43
Raohz520 发表于 2023-5-22 13:41
很明显是Python啊   对吧

嗯嗯是的呢
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 21:27

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表