大家好,我刚回到学校,苦逼的学习生活又要开始啦!
刚回到学校,一打开自己的台式电脑,我的天,乱死了~~
上学期残留的各种word文档,excel文档让我眼花缭乱······
所以就有个想法,写一个简单的python脚本,将隐藏在所有文件夹中的文档都揪出来!!
原理很简单!!希望大家指点!
先亮代码:
import easygui,os,shutil
class files:
file_type = "" #文件类型
root_path = "" #你需要整理的根目录
save_path = "" #存放文件的目录
def __init__(self,root,save,seleted):
self.root_path = root
self.save_path = save
self.file_type = seleted
def files_managing(self,root_path):
for content in os.listdir(root_path):
path = os.path.join(root_path,content)
#合成路线,注意根路径要在前面,名字在后面
if os.path.isfile(path):
if os.path.splitext(path)[1] == self.file_type:
#判断是不是我想要整理的文件
try:
shutil.move(path,self.save_path)
except BaseException:
print(path+" 该文件找不到,小异常!!")
elif os.path.isdir(path): #合成路径是目录时,递归
self.files_managing(path)
def files_manager(self):
self.files_managing(self.root_path)
def main():
select_type = easygui.choicebox("请选择你想整理的文件类型,\n.docx .doc是word文档类型,\n.xls .xlst为excel类型",choices=(".docx",".doc",".xls",".xlst"))
easygui.msgbox("请选择你的源目录,本脚本将从源目录出发,搜集对应文件")
root_path = easygui.diropenbox()
easygui.msgbox("请选择你的保存目录,本脚本将搜集对应文件移到此处")
save_path = easygui.diropenbox()
file_manager = files(root_path,save_path,select_type)
file_manager.files_manager()
easygui.msgbox("执行成功!")
main()
以上就是代码了,结合easygui模块和shutil和os模块进行开发,前者需要通过pip安装,后两者python自带。
后面我还用了pipinstaller模块将文件打包成一个exe文件,下面是具体执行的图片。
菜鸟一枚,请大家多多关照!以后我会更新更多实用的脚本,如果有什么建议,多多交流拉!!