Code Monkey home page Code Monkey logo

autoupdate's Introduction

autoupdate

软件自动更新,用于windows 在服务器上保存两个文件 比如 bbb.txt,bbb.exe txt为可执行文件,exe为需要更新执行程序

func main() {

  Update()
  
}

func Update() {
	f, _ := filepath.Abs(os.Args[0])
	au := autoupdate.AutoUpdate{
		Url:      "服务器地址",
		Softname: "bbb", // 软件名
		CurrVer:  "0.0.1",      // 当前版本
		CurrName: f,            // 当前运行路径及文件名
	}
	if au.NeedUpdate() {
			err := au.Update()
			if err != nil {
				panic(err)
			}
	}
}

autoupdate's People

Contributors

sanrentai avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.