• 大小: 5.39M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: winform  升级  ORM  自动  FORM  

资源简介



winform自动升级,主程和附助程序之间的配合升级主程,主要是先开启主程序,判断是否需要升级 ,如果需要升级,启动附助程序升级,再关闭主程序,升级成功后,再开启主程序 关闭附助程序,这样就完成了主程序升级,具体看代码,不多说

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.IO;
using COMMON;
using Update;

namespace autoUpdate
{

    public partial class Form1 : Form
    {
        [DllImport(“zipfile.dll“)]
        public static extern int MyZip_ExtractFileAll(string zipfile string pathname);
        private static string ProjectName = System.Configuration.ConfigurationManager.AppSettings[“ProjectName“].ToString().Trim(); 
        public Form1()
        {
            InitializeComponent();
            //清除之前下载来的rar文件
            if (File.Exists(Application.StartupPath + “\\Update_autoUpdate.zip“))
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4145  2018-11-09 09:33  TestDemo\autoUpdate\autoUpdate.csproj

     文件      10240  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\autoUpdate.exe

     文件      22016  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\autoUpdate.pdb

     文件      22696  2018-11-08 15:41  TestDemo\autoUpdate\bin\Debug\autoUpdate.vshost.exe

     文件        490  2018-04-12 07:35  TestDemo\autoUpdate\bin\Debug\autoUpdate.vshost.exe.manifest

     文件       4096  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\COMMON.dll

     文件       7680  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\COMMON.pdb

     文件       8192  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\Update.dll

     文件      17920  2018-11-08 17:26  TestDemo\autoUpdate\bin\Debug\Update.pdb

     文件     464384  2002-08-15 12:11  TestDemo\autoUpdate\bin\Debug\zipfile.dll

     文件       4496  2018-11-09 09:25  TestDemo\autoUpdate\Form1.cs

     文件       3143  2018-07-17 16:42  TestDemo\autoUpdate\Form1.Designer.cs

     文件       6011  2018-07-17 16:42  TestDemo\autoUpdate\Form1.resx

     文件       1856  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.csproj.FileListAbsolute.txt

     文件       1012  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.csproj.GenerateResource.Cache

     文件      14374  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.csprojResolveAssemblyReference.cache

     文件      10240  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.exe

     文件        180  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.Form1.resources

     文件      22016  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.pdb

     文件        180  2018-11-08 17:26  TestDemo\autoUpdate\obj\x86\Debug\autoUpdate.Properties.Resources.resources

     文件       7445  2018-11-09 09:14  TestDemo\autoUpdate\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        491  2018-07-17 16:41  TestDemo\autoUpdate\Program.cs

     文件       1352  2018-07-17 16:41  TestDemo\autoUpdate\Properties\AssemblyInfo.cs

     文件       2872  2018-07-17 16:41  TestDemo\autoUpdate\Properties\Resources.Designer.cs

     文件       5612  2018-07-17 16:41  TestDemo\autoUpdate\Properties\Resources.resx

     文件       1097  2018-07-17 16:41  TestDemo\autoUpdate\Properties\Settings.Designer.cs

     文件        249  2018-07-17 16:41  TestDemo\autoUpdate\Properties\Settings.settings

     文件       4096  2018-11-08 17:40  TestDemo\COMMON\bin\Debug\COMMON.dll

     文件       7680  2018-11-08 17:40  TestDemo\COMMON\bin\Debug\COMMON.pdb

     文件       2306  2018-07-17 16:53  TestDemo\COMMON\COMMON.csproj

............此处省略147个文件信息

评论

共有 条评论