• python 备份文件脚本


    使用python备份服务器的文件

    #coding=utf-8
    import os 
    import os.path
    
    def copyFiles(sourceDir, targetDir): 
    for file in os.listdir(sourceDir): 
    sourceFile = os.path.join(sourceDir, file) 
    targetFile = os.path.join(targetDir, file) 
    if os.path.isfile(sourceFile): 
    if not os.path.exists(targetDir): 
    os.makedirs(targetDir) 
    if not os.path.exists(targetFile) or (os.path.exists(targetFile) and (os.path.getsize(targetFile) != os.path.getsize(sourceFile))): 
    open(targetFile, "wb").write(open(sourceFile, "rb").read()) 
    if os.path.isdir(sourceFile): 
    First_Directory = False 
    copyFiles(sourceFile, targetFile)
    print copyFiles("/home/user/Application/tomcat/apache-tomcat-8.0.30/wtpwebapps/CLZ/static/upload/", "./")

    ubuntu 环境设置定时任务

    crontab -e 配置定时任务

    sudo service cron start 启动任务

    sudo service cron stop 停止任务

  • 相关阅读:
    MongoDB学习(翻译6)
    MongoDB学习(翻译5)
    MongoDB学习(翻译4)
    MongoDB学习之--安全和认证
    MongoDB学习(翻译3)
    前端面试题—1
    静态网页制作
    风雨哈佛路感后感
    实习记录11
    实习记录10
  • 原文地址:https://www.cnblogs.com/guoke-jsp/p/5341073.html
Copyright © 2020-2023  润新知