C# 更新 CheckForUpdates

2022/7/9 14:21:58

本文主要是介绍C# 更新 CheckForUpdates,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 public void CheckForUpdates()
        {
                Dispatcher.Invoke(() =>
                {
                    try
                    {
                        DLUpdate = new WebClient();
                        JsonDownload = new WebClient();
                        string actualVersion =
                            Convert.ToString(System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);
                        string link = DLUpdate.DownloadString("http://pastebin.com/raw.php?i=bfs0Jdci");
                        string newVersion = DLUpdate.DownloadString(link + "WebExpress/update.txt");
                        DLUpdate.DownloadFileCompleted += DLUpdate_DownloadFileCompleted;

                        var version1 = new Version(actualVersion);
                        var version2 = new Version(newVersion);

                        var result = version1.CompareTo(version2);
                        if (result > 0)
                            Console.WriteLine("version1 is greater");
                        else if (result < 0)
                        {
                            JsonDownload.DownloadFileAsync(
                                new Uri(link + "WebExpress/files.json"), "files.json");
                            this.Hide();

                            DLUpdate.DownloadFileAsync(new Uri(link + "WebExpress/Update.exe"),
                                "Update.exe");
                        }
                        else
                            Console.WriteLine("versions are equal");
                        return;
                    }
                    catch(Exception ex)
                    {
                        
                    }
                });
            
            }

 

  private void DLUpdate_DownloadFileCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
        {
            try
            {
                if (File.Exists("Update.exe"))
                {
                    Process.Start("Update.exe");
                    Application.Current.Shutdown();
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Update open: " + ex.Message);
            }
        }

  



这篇关于C# 更新 CheckForUpdates的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程