首页 > 编程 > Python > 正文

python删除过期文件的方法

2020-01-04 18:09:37
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python删除过期文件的方法,涉及Python日期与文件的相关操作技巧,需要的朋友可以参考下

本文实例讲述了python删除过期文件的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. # remove all jpeg image files of an expired modification date = mtime 
  2. # you could also use creation date (ctime) or last access date (atime) 
  3. # os.stat(filename) returns (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime) 
  4. # tested with Python24 vegaseat 6/7/2005 
  5. import os, glob, time 
  6. root = 'D://Vacation//Poland2003//' # one specific folder 
  7. #root = 'D://Vacation//*' # or all the subfolders too 
  8. # expiration date in the format YYYY-MM-DD 
  9. xDate = '2003-12-31' 
  10. print '-'*50 
  11. for folder in glob.glob(root): 
  12. print folder 
  13. # here .jpg image files, but could be .txt files or whatever 
  14. for image in glob.glob(folder + '/*.jpg'): 
  15. # retrieves the stats for the current jpeg image file 
  16. # the tuple element at index 8 is the last-modified-date 
  17. stats = os.stat(image) 
  18. # put the two dates into matching format  
  19. lastmodDate = time.localtime(stats[8]) 
  20. expDate = time.strptime(xDate, '%Y-%m-%d'
  21. print image, time.strftime("%m/%d/%y", lastmodDate) 
  22. # check if image-last-modified-date is outdated 
  23. if expDate > lastmodDate: 
  24. try
  25. print 'Removing', image, time.strftime("(older than %m/%d/%y)", expDate) 
  26. #os.remove(image) # commented out for testing 
  27. except OSError: 
  28. print 'Could not remove', image 

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表