python实现的文件夹清理程序分享

作者:junjie 时间:2021-07-20 07:58:57 

使用:


foldercleanup.py -d 10 -k c:\test\keepfile.txt c:\test


表示对c:\test目录只保留最近10天的子文件夹和keepfile.txt中指定的子文件夹。

代码:


import os
import os.path
import datetime
 
def getOption():
  from optparse import OptionParser
 
  des   = "clean up the folder with some options"
  prog  = "foldercleanup"
  ver   = "%prog 0.0.1"
  usage = "%prog [options] foldername"
 
  p = OptionParser(description=des, prog=prog, version=ver, usage=usage,add_help_option=True)
  p.add_option('-d','--days',action='store',type='string',dest='days',help="keep the subfolders which are created in recent %days% days")
  p.add_option('-k','--keepfile',action='store',type='string',dest='keepfile',help="keep the subfolders which are recorded in text file %keepfile% ")
  options, arguments = p.parse_args()
 
  if len(arguments) != 1:
    print("error: must input one directory as only one parameter ")
    return
 
  return options.days, options.keepfile, arguments[0] 

 
def preCheckDir(dir):
  if(not os.path.exists(dir)):
    print("error: the directory your input is not existed")
    return
  if(not os.path.isdir(dir)):
    print ("error: the parameter your input is not a directory")
    return
   
  return os.path.abspath(dir)
 
def isKeepByDay(dir, day):
  indays = False
  if( day is not None) :
    t = os.path.getctime(dir)
    today = datetime.date.today()
    createdate = datetime.date.fromtimestamp(t)
    indate = today - datetime.timedelta(days = int(day))
    print (createdate)
    if(createdate >= indate):
      indays = True
  print (indays)
  return indays
 
def isKeepByKeepfile(dir, keepfile):
  needkeep = False
  print (dir)
  if (keepfile is not None):
    try :
      kf = open(keepfile,"r")
      for f in kf.readlines():
        print (f)
        if (dir.upper().endswith("\\" + f.strip().upper())):
          needkeep = True
      kf.close()
    except:
      print ("error: keep file cannot be opened")
  print(needkeep)
  return needkeep
   
def removeSubFolders(dir, day, keepfile):
  subdirs = os.listdir(dir)
  for subdir in subdirs:
    subdir = os.path.join(dir,subdir)
    if ( not os.path.isdir(subdir)):
      continue
    print("----------------------")
    if( (not isKeepByDay(subdir, day))and (not isKeepByKeepfile(subdir, keepfile))):
      print("remove subfolder: " + subdir)
      import shutil
      shutil.rmtree(subdir,True)
   
def FolderCleanUp():
  (day, keepfile, dir) = getOption()
  dir = preCheckDir(dir)
  if dir is None:
    return
  removeSubFolders(dir,day,keepfile)
 
if __name__=='__main__':
  FolderCleanUp()

对目录下保留最后的zip文件:


def KeepLastNumZips(num)
    def extractTime(f):
        return os.path.getctime(f)

    zipfiles = [os.path.join(zipdir, f)
                for f in os.listdir(zipdir)
                if os.path.splitext(f)[1] == ".zip"]
    if len(zipfiles) > num:
        zipfiles.sort(key=extractTime, reverse=True)
        for i in range(num, len(zipfiles)):
            os.remove(zipfiles[i])

标签:python,文件夹清理
0
投稿

猜你喜欢

  • 如何修改被表单引用的ASP页面?

    2010-06-10 18:32:00
  • PHP开发中常用的三个表单验证函数使用小结

    2023-11-21 19:15:50
  • sql server数据库最大Id冲突问题解决方法之一

    2012-01-05 19:28:42
  • 5招优化MySQL插入方法

    2009-04-02 10:49:00
  • plsql与tsql的语法不同

    2009-09-13 17:33:00
  • 八种获取当前日期的js代码

    2007-09-07 10:26:00
  • 不要像HP一样考验客户的耐心

    2009-09-14 23:25:00
  • eWebEditor不支持IE8的解决方法

    2009-11-02 10:59:00
  • 如何取得表中字段的属性?

    2010-01-18 20:52:00
  • Oracle数据库安全策略分析 (三)

    2010-07-31 13:24:00
  • 微信小程序学习笔记之表单提交与PHP后台数据交互处理图文详解

    2023-11-22 19:29:44
  • Tensorflow 模型转换 .pb convert to .lite实例

    2023-08-13 05:19:04
  • 如何在MySQL数据库中使用XML数据

    2009-12-29 10:48:00
  • 设计哲学与跨界

    2009-08-18 12:25:00
  • 微软建议的ASP性能优化28条守则(7)

    2005-05-30 16:02:00
  • ASP名次排列函数

    2008-07-20 13:42:00
  • python 遍历可迭代对象的实现方法

    2021-03-02 07:13:07
  • python实现壁纸批量下载代码实例

    2023-11-15 12:38:54
  • 2007淘宝UED招聘题解(前端开发部分)

    2007-11-24 10:32:00
  • asp如何让我的网页自动适应客户端的屏幕分辨率?

    2010-05-13 16:38:00
  • asp之家 网络编程 m.aspxhome.com