python 备份和自动清理过期备份脚本

# Filename: backup_ver4.py
import os
import time
import shutil
import sys
import datetime




# 时间格式
#time_format = "%a %b %d %H:%M:%S %Y"
# 取得当前时间
#today = datetime.datetime.now()


# 1.需要备份的文件目录
source = ['F:\\python\\test" "code']


# 2. 备份文件到目标路径
target_dir = 'F:\\python\\backup\\'


# 3. The files are backed up into a zip file.
# 4. The current day is the name of the subdirectory in the main directory
#today = target_dir + time.strftime('%Y%m%d')
today = time.strftime('%Y-%m-%d')
#bkname = ['code']
# The current time is the name of the zip archive
now = time.strftime('%H%M%S')


# Take a comment from the user to create the name of the zip file
#comment = input('Enter a comment -->')
comment = 'code'
if len(comment)==0: 
    target = today+os.sep+now+'.zip'
else:
   # target = today+os.sep+now+'_'+\
   #         comment.replace(' ','_')+'.zip'
     target = target_dir+os.sep+comment.replace(' ','_')+\
             '_'+today+'-'+now+'.zip'
   #target = target_dir+os.sep+comment.replace(' ','_')+'_'+\
   #          today+'_'+now+'.zip'
    #target = target_dir+os.sep+\
    #         today+'.zip'




    # Notice the backslash!


# Create the subdirectory if it isn't already there
#if not os.path.exists(today):
#    os.mkdir(today)  # make directory
#    print('Successfully created directory', today)


# 5. 用winrar的rar命令压缩文件,但首先要安装有winrar且设置winrar到环境变量的路径path中
zip_command = "rar a %s %s" %(target,''.join(source))


# Run the backup
#设置winrar到path环境中,这里已经手动添加,如图
#os.system('set Path=%Path%;C:\Program Files\WinRAR')
if os.system(zip_command)==0:
    print('Successful backup to', target)
else:
    print('Backup FAILED')
    


test_target_dir = 'E:\\操作手册'
path = os.listdir( test_target_dir )
#print('backup file', path)






for fname in path:
#    print ('filename', fname)    
    time_format = "%a %b %d %H:%M:%S %Y"
    today = datetime.datetime.now()
#    four_weeks = datetime.timedelta(weeks=1)
    four_weeks = datetime.timedelta(days=6)
    four_weeks_ago = today - four_weeks
    four_weeks_ago_timestamps = time.mktime(four_weeks_ago.timetuple())
    file_timestamp = os.path.getmtime(os.path.join(test_target_dir,fname))
#    print (fname,file_timestamp,four_weeks_ago_timestamps)


    if float(file_timestamp) <= float(four_weeks_ago_timestamps):
        print (fname,test_target_dir,file_timestamp,four_weeks_ago_timestamps)
#        os.remove(os.path.join(test_target_dir,fname))
        

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

金桔数科

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值