public partial class update : Form
    {
        private WebClient client;
        int downfilenum = 0; //已下载文件数
        int downlistnum = 0;//总下载文件数
        List<string> list;
        private string URl;
        private string fileName;
        private const string applicationFile = "Setup";

public update()
        {
            InitializeComponent();
        }
        //检测网络状态
        [DllImport("wininet.dll")]
        private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue);
        private void update_Load(object sender, EventArgs e)
        {
            if (isConnected())
            {
                client = new WebClient();
                client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged);
                client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted);
                client.Proxy = WebRequest.DefaultWebProxy;
                client.Proxy.Credentials = new NetworkCredential();
                updateFile();
            }
            else
            {
                lblMsg.Text = "网络连接异常,请联系管理员处理";
            }
        }
        /// <summary>
        /// 检测网络状态
        /// </summary>
        private bool isConnected()
        {
            int I = 0;
            bool state = InternetGetConnectedState(out I, 0);
            return state;
        }
        /// <summary>
        /// 获取xml文件,判断是否升级
        /// </summary>
        /// <param name="Dir"></param>
        /// <returns></returns>
        private string getSoftUpdate()
        {
            if (!File.Exists(Application.StartupPath + @"\\update.xml"))
            {
                return "nofile";
            }
            DateTime newDateTime;
            try
            {
                SrmUpdate.updateSoapClient s = new SrmUpdate.updateSoapClient();
                newDateTime = Convert.ToDateTime(s.GetSoftUpDateTime());//获取服务器最新更新日期
            }
            catch (Exception)
            {

throw;
            }
            DateTime oldDateTime;
            XmlDocument doc = new XmlDocument();
            doc.Load(Application.StartupPath + @"\\update.xml");
            oldDateTime = Convert.ToDateTime(doc.SelectSingleNode("/AutoUpdate/SoftUpdateTime").Attributes["Date"].Value);
            return newDateTime >= oldDateTime ? "true" : "false";
        }
        /// <summary>
        /// 开始下载文件
        /// </summary>
        private void updateFile()
        {
            //判断系统有无更新,如果需要升级系统,开始下载
            string isUpdate = getSoftUpdate();
            if (isUpdate == "true")
            {
                lblMsg.Text = "检测到版本有更新,准备升级";
                progressBar1.Visible = true;
                startDownload();
            }
            else if (isUpdate == "false")
            {
                lblMsg.Text = "无需更新,直接启动系统";
                runSystem();
            }
            else if (isUpdate == "nofile")
            {
                lblMsg.Text = "缺少系统文件,请您联系管理员处理";
            }
        }
        /// <summary>
        /// 下载完成调用
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
        {
            downfilenum++;
            if (client != null) { client.CancelAsync(); }
            if (downfilenum < downlistnum) downLoadFile(list[downfilenum].ToString()); //下载剩余的
            if (downfilenum == downlistnum) { init(); } //初始化
        }
        //下载某个文件
        private void downLoadFile(string fileName)
        {
            downLoad(URl + fileName, Application.StartupPath + "\\temp\\" + fileName, true); //异步下载远程文件
        }
        /// <summary>
        /// 下载进度条
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
        {
            int a = e.ProgressPercentage;
            progressBar1.Value = a;
            lblMsg.Text = a + "% Downloading... ";
        }
        
        /// <summary>
        /// HTTP下载远程文件并保存本地的函数
        /// </summary>
        private void downLoad(string downAddress, string savePath, Boolean Async)
        {
            DirectoryInfo di = Directory.GetParent(savePath);
            if (!di.Exists) di.Create();

WebClient client = new WebClient();  //再次new 避免WebClient不能I/O并发          
            if (Async)
            { //异步下载
                client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged);
                client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted);
                client.DownloadFileAsync(new Uri(downAddress), savePath);
            }
            else client.DownloadFile(new Uri(downAddress), savePath);
        }
        /// <summary>
        /// 开始下载
        /// </summary>
        private void startDownload()
        {
            SrmUpdate.updateSoapClient ws = new SrmUpdate.updateSoapClient();
            URl = ws.GetSoftUpdateUrl();
            list = ws.GetSoftUpdateFileList();
            downlistnum = list.Count;
            fileName = list[0].Substring(list[0].LastIndexOf("/") + 1, list[0].Length - list[0].LastIndexOf("/") - 1);
            downLoad(URl + list[0], Application.StartupPath + "\\temp\\" + fileName, true);
        }
        private void init()
        {
            string curdir = Application.StartupPath;
            DirectoryInfo theFolder = new DirectoryInfo(curdir + @"\temp");
            if (theFolder.Exists)
            {
                copyDirectory(curdir + @"\temp", curdir);
            }

if (Directory.Exists(curdir + @"\temp\")) Directory.Delete(curdir + @"\temp\", true); //删除临时目录
            runSystem();
        }
        /// <summary>
        /// 复制文件夹中的所有文件到指定文件夹
        /// </summary>
        /// <param name="DirectoryPath">源文件夹路径</param>
        /// <param name="DirAddress">保存路径</param>
        private void copyDirectory(string DirectoryPath, string DirAddress)//复制文件夹,
        {
            if(!Directory.Exists(DirAddress)) Directory.CreateDirectory(DirAddress);
            DirectoryInfo DirectoryArray = new DirectoryInfo(DirectoryPath);
            FileInfo[] Files = DirectoryArray.GetFiles();//获取该文件夹下的文件列表
            DirectoryInfo[] Directorys = DirectoryArray.GetDirectories();//获取该文件夹下的文件夹列表
            foreach (FileInfo theFile in Files)//逐个复制文件     
            {
                //如果临时文件夹下存在与应用程序所在目录下的文件同名的文件,则删除应用程序目录下的文件   
                if (File.Exists(DirAddress + "\\" + Path.GetFileName(theFile.FullName)))
                    File.Delete(DirAddress + "\\" + Path.GetFileName(theFile.FullName));
                //将临时文件夹的文件移到应用程序所在的目录下   
                File.Copy(theFile.FullName, DirAddress + "\\" + Path.GetFileName(theFile.FullName));
            }
            foreach (DirectoryInfo Dir in Directorys)//逐个获取文件夹名称,并递归调用方法本身     
            {
                copyDirectory(DirectoryPath + "\\" + Dir.Name, DirAddress + "\\" + Dir.Name);
            }
        }
        /// <summary>
        /// 启动主程序
        /// </summary>
        private void runSystem()
        {
            //启动安装程序  
            this.lblMsg.Text = "正在启动主程序....";
            System.Diagnostics.Process.Start(Application.StartupPath + @"\SRMClientAppLoader.exe");
            this.Close();
        }
    }

winform自动更新并实现文件的批量异步下载的更多相关文章

  1. winform自动更新程序实现

    一.问题背景 本地程序在实际项目使用过程中,因为可以操作电脑本地的一些信息,并且对于串口.OPC.并口等数据可以方便的进行收发,虽然现在软件行业看着动不动都是互联网啊啥的,大有Web服务就是高大上的感 ...

  2. Winform自动更新组件分享

    作者:圣殿骑士 出处:http://www.cnblogs.com/KnightsWarrior/ 关于作者:专注于微软平台项目架构.管理和企业解决方案.自认在面向对象及面向服务领域有一定的造诣,熟悉 ...

  3. VB winform自动更新 笔记

    看网上各种自动更新方法,最后自己找了个比较简单的,在此做个笔记. 服务器上的共享盘里存放生成的可执行文件和XML格式的配置: <?xml version="1.0" enco ...

  4. C# winform自动更新 (附 demo下载)

    随着需求的变化,如果Server每次更新出新的内容,Client都要重新安装的话. 太过于复杂化.  所以自动更新是很有必要的. 一..NET自带的更新方式    以服务器端为主  (自动更新,微软爸 ...

  5. winform自动更新之AutoUpdater.NET

    版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/zhaobw831/article/details/82226291使用AutoUpdater.NET ...

  6. [QuickX]xcode运行Quick-cocos2d-x项目时自动更新lua资源文件

    1.项目设置 build settings ->build options ->Scan all source files and Includes = YES 2.加入script (1 ...

  7. Winform(C#.NET)自动更新组件的使用及部分功能实现

    声明:核心功能的实现是由园子里圣殿骑士大哥写的,本人是基于他核心代码,按照自己需求进行修改的.   而AutoUpdaterService.xml文件生成工具是基于评论#215楼 ptangbao的代 ...

  8. Winform开发框架之通用自动更新模块(转)

    在网络化的环境中,特别是基于互联网发布的Winform程序,程序的自动更新功能是比较重要的操作,这样可以避免挨个给使用者打电话.发信息通知或者发送软件等,要求其对应用程序进行升级.实现程序的自动更新, ...

  9. WinForm应用程序中实现自动更新功能

    WinForm应用程序中实现自动更新功能 编写人:左丘文 2015-4-20 近来在给一客户实施ECM系统,但他们使用功能并不是我们ECM制造版提供的标准功能,他们要求对系统作一些定制功能,为了避免因 ...

随机推荐

  1. Express安装入门与模版引擎ejs

    Express安装入门与模版引擎ejs 目录 前言 Express简介和安装 运行第一个基于express框架的Web 模版引擎 ejs express项目结构 express项目分析 app.set ...

  2. 【推荐分享】Python电子书,视频教程(Let's Python系列视频教程等)(百度网盘)

    资源都放在百度网盘里了. Python视频教程(Python Django视频教程全集—台湾辅仁大学):http://pan.baidu.com/s/1dDgiWIt Python视频教程(let's ...

  3. CEGUI添加自定义控件

    用CEGUI做界面将近3个月了,比较忙,而且自己懒了许多,没能像以前那样抽出大量时间研究CEGUI,查阅更多的资料书籍,只是在工作间隙,将官网上的一些资料和同事推荐的<CEGUI深入解析> ...

  4. SQLSERVER 总结1

    数据:描述事物的符号记录 数据库:按照数据结构来组织和存储管理的数据仓库 数据库管理系统:位于用户与操作系统之间的一层数据管理软件 数据库系统:在计算机系统中引入数据库后的系统构成.由数据库,数据库管 ...

  5. JS数量输入控件

    JS数量输入控件 很早看到kissy首页 有数量输入控件,就随便看了下功能 感觉也不怎么难 所以也就试着自己也做了一个, 当然基本的功能和他们的一样,只是用了自己的编码思想来解决这么一个问题.特此给大 ...

  6. C++中文件的操作

    #include <iostream> #include <fstream> using namespace std; int main() { char s[27],m[27 ...

  7. JQuery的插件式开发

    如果你只会JQuery的插件式开发, 那么你可以进来看看? 对于JQuery的学习,已经有3年多的时间了,直到去年与我的组长一起做项目,看到他写的JS,确实特别漂亮,有时甚至还看不太懂, 我才发现其实 ...

  8. [Usaco2008 Nov]Buying Hay 购买干草[背包]

    Description     约翰的干草库存已经告罄,他打算为奶牛们采购日(1≤日≤50000)磅干草.     他知道N(1≤N≤100)个干草公司,现在用1到N给它们编号.第i个公司卖的干草包重 ...

  9. 关于pydev的语法的错误提示

    第三方包引入时,eclipse默认会把一些包定为错误的,错误是:“undefined variable from import...” 其实是对的,可是报错,很烦人 解决方法:window -- pr ...

  10. asp.net的ajax以及json

    asp.net的ajax以及json 来现在这家公司以前,从未接触过webform,以前在学校做的项目是php,java以及asp.net mvc的,当时asp.net mvc用的是razor引擎,所 ...