码迷,mamicode.com
首页 > 其他好文 > 详细

桌面文件自动整理脚本

时间:2016-01-08 01:52:26      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

__author__ = zhangcx
import os
import shutil

path = rC:\Users\zhangcx\Desktop
lst = sorted(os.listdir(path))
for i in lst:
    a,b = os.path.splitext(i)
    b = b[1:]
    print({f}:{ext}.format(f=a,ext=b))
    if b:
        olddir = %s\%s% (path, i)
        newdir = %s\%s % (path,b.lower())
        if not os.listdir(path).__contains__(b.lower()):
            os.mkdir(newdir)
        shutil.move(olddir,newdir)
        #print(olddir)
        #print(newdir)

 

桌面文件自动整理脚本

标签:

原文地址:http://www.cnblogs.com/huangzelin/p/5111755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!