python 实现电脑桌面文件自动归类

代码:

import shutil
import os
path = r'C:\Users\admin\Desktop'

#桌面上所有文件 
files = os.listdir(path)
print(files)
file_geshi=()
print(dir(file_geshi))

#根据文件后缀,新建不存在类型文件,并把对应类型文件保存到对应文件夹中
for f in files:
    end = f.split(".")[-1]

    #如果文件后缀为lnk或ini,跳出此次循环继续循环
    if end == 'lnk' or end == 'ini':
    	continue
    if not os.path.exists(path + "/"+end):
        os.makedirs(path + "/"+end)
    shutil.move(path+"/"+f,path+"/"+end)

你可能感兴趣的:(python)