-
大小: 0.16M文件類型: .zip金幣: 1下載: 0 次發布日期: 2020-12-26
- 語言: C#
- 標簽: AutoUpdate??解壓縮??
資源簡介
系統結構
服務端
自動更新服務:這個是部署到web服務器的,如果有新的版本,只要放到自動更新服務\App_Data\Update目錄下,即可
【注意:每次更新版本時,需要更新軟件的版本號,即解決方案的AssemblyInfo.cs文件,類似如下內容
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
更新版本時換這個內容
】
客戶端
MyApp:每次啟動時需要檢測版本【引用“自動更新服務”】,有新版本時進行解壓和更新
具體的內容參考詳細的代碼。
代碼片段和文件信息
using?System;
using?System.Text;
using?System.Runtime.Serialization;
using?System.Runtime.Serialization.Formatters.Binary;
using?System.Collections;
using?System.Collections.Generic;
using?System.IO;
using?System.IO.Compression;
????///?
????///?Gzip?的摘要說明
????///?
????public?static?class?GZip
????{
????????///?
????????///?對目標文件夾進行壓縮,將壓縮結果保存為指定文件
????????///?
????????///?要壓縮的文件或文件夾路徑,可指定多個
????????///?壓縮文件保存路徑
????????public?static?void?壓縮(string?保存路徑?params?string[]?目標路徑)
????????{
????????????ArrayList?list?=?new?ArrayList();
????????????foreach?(TempFileName?f?in?轉化文件列表(目標路徑))
????????????{
????????????????byte[]?destBuffer?=?File.ReadAllBytes(f.FullName);
????????????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2012-12-16?12:57??AutoUpdate\
?????文件????????2506??2009-12-21?07:11??AutoUpdate\AutoUpdate.sln
?????文件????????8192??2012-12-16?12:57??AutoUpdate\AutoUpdate.suo
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\bin\
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\bin\Debug\
?????文件????????7680??2009-12-21?06:53??AutoUpdate\GZip\bin\Debug\GZip.dll
?????文件???????17920??2009-12-21?06:53??AutoUpdate\GZip\bin\Debug\GZip.pdb
?????文件????????5895??2009-12-21?06:40??AutoUpdate\GZip\GZip.cs
?????文件????????2482??2009-12-21?06:53??AutoUpdate\GZip\GZip.csproj
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\obj\
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\obj\Debug\
?????文件?????????774??2010-03-21?21:37??AutoUpdate\GZip\obj\Debug\GZip.csproj.FileListAbsolute.txt
?????文件????????7680??2009-12-21?06:53??AutoUpdate\GZip\obj\Debug\GZip.dll
?????文件???????17920??2009-12-21?06:53??AutoUpdate\GZip\obj\Debug\GZip.pdb
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\obj\Debug\TempPE\
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\GZip\Properties\
?????文件????????1340??2009-12-21?06:37??AutoUpdate\GZip\Properties\AssemblyInfo.cs
?????目錄???????????0??2010-03-21?21:38??AutoUpdate\MyApp\
?????文件????????1388??2010-03-21?21:38??AutoUpdate\MyApp\app.config
?????文件?????????286??2009-12-21?06:44??AutoUpdate\MyApp\App.xaml
?????文件?????????301??2009-12-21?06:44??AutoUpdate\MyApp\App.xaml.cs
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\MyApp\bin\
?????目錄???????????0??2010-03-21?21:16??AutoUpdate\MyApp\bin\Debug\
?????文件????????7680??2009-12-21?06:53??AutoUpdate\MyApp\bin\Debug\GZip.dll
?????文件???????12800??2010-03-21?21:37??AutoUpdate\MyApp\bin\Debug\MyApp.exe
?????文件????????1388??2010-03-21?21:38??AutoUpdate\MyApp\bin\Debug\MyApp.exe.config
?????文件???????44544??2010-03-21?21:37??AutoUpdate\MyApp\bin\Debug\MyApp.pdb
?????文件???????14328??2010-03-21?21:40??AutoUpdate\MyApp\bin\Debug\MyApp.vshost.exe
?????文件????????1388??2010-03-21?21:38??AutoUpdate\MyApp\bin\Debug\MyApp.vshost.exe.config
?????文件?????????490??2007-07-21?01:33??AutoUpdate\MyApp\bin\Debug\MyApp.vshost.exe.manifest
............此處省略88個文件信息
評論
共有 條評論