加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
classify.py 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
K-Aron 提交于 2022-08-28 22:15 . master
import os
import shutil
def main():
path1=input('请输入需要整理的路径:')
path2=path1.replace('\\','/')
files=os.listdir(path2)
for item in files:
folder_name=path2+'/'+item.split('.')[-1]
source=path2+'/'+item
if not os.path.exists(folder_name):
os.makedirs(folder_name)
shutil.move(source,folder_name)
else:
shutil.move(source,folder_name)
if __name__=='__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化