python⽂件整理⼯具
做项⽬的时候,为了⽅便,总是直接把⽂件放在桌⾯上。时间⼀长,桌⾯上的⽂件堆积如⼭。到了必须清理的时候,整理⽐较耗费时间。直接删除⼜不太放⼼,因为有些⽂件可能还会⽤到。
通常我的做法是,新建⼀个⽂件夹,把⽂件全部移动到⾥⾯,为桌⾯腾出空间,然后有空的时候再回来整理。
因为我经常这么做,重复劳动。重复劳动都应该让程序代劳。所以我⽤python写了⼀段脚本,实现了这个简单的功能。以下是源码:
#This Python file uses the following encoding: utf-8
import os
import shutil
from datetime import datetime
curDir = os.curdir
# create the folder to store the files in current directory
dstFolder = os.path.join(curDir, w().strftime('%m-%d %H-%M'))
if not ists(dstFolder):
os.makedirs(dstFolder)
# list and move the file in current directory to the folder just created
files = os.listdir(curDir)
for f in files:
if os.path.isfile(f) and f != '':
srcPath = os.path.join(curDir, f)
dstPath = os.path.join(dstFolder, f)
我把它做成exe了,可以在下载。
使⽤说明:
python怎么读取桌面上的文件把exe放在某个⽬录下,双击运⾏。当前⽬录下的⽂件(不包括⽂件夹)就会被移动到⼀个⽂件夹下(新⽂件夹以当前时间命名)。
我写它主要⽬的是为了清理桌⾯,放到桌⾯,运⾏⼀下,桌⾯上的的⽂件就移⾛,说法清爽。
注意!
不要修改exe的名称,修改的话也能⽤,只是exe也会被移动到新建的⽂件夹中。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论