壓縮備份C#工程
壓縮備份C#工程
雖然有源代碼管理,但本著所有重要的計(jì)算機(jī)文件都要備份的原則,但我們?nèi)匀恍枰獣r(shí)常將程序整體備份,一般的程序備份就是將程序目錄整個(gè)的復(fù)制打包,里面可能存在很多垃圾文件,而且是手工操作,比較麻煩,于是我們程序員就想到編個(gè)小程序來(lái)備份程序了。為了使用方便這個(gè)程序還能掛靠到集成開(kāi)發(fā)環(huán)境,方便隨時(shí)調(diào)用。
一般的我們都是用VS.NET作為開(kāi)發(fā)環(huán)境,因此這個(gè)小程序就要成為VS.NET的擴(kuò)展程序。但編寫(xiě)VS.NET的擴(kuò)展程序不是很方便,于是我們就想到更方便的擴(kuò)展VS.NET的方法,那就是VBA.NET。
VBA.NET是擴(kuò)展VS.NET的方法,是Office的VBA在VS.NET中的延續(xù)。使用方便,和VS.NET緊密結(jié)合,而且是解釋運(yùn)行,調(diào)試方便,而且其中的函數(shù)能綁定到VS.NET的工具條和菜單上面,調(diào)用方便。
現(xiàn)在說(shuō)說(shuō)壓縮備份C#工程的流程。以下以VS.NET2003為例子進(jìn)行說(shuō)明,本文中的代碼也只能處理VS.NET2003的C#工程。用記事本打開(kāi)一個(gè)VS.NET2003的C#工程文件(擴(kuò)展名為 .csproj ),可以看到這是一個(gè)XML文件,但這個(gè)XML文件沒(méi)有XML聲明頭"<?xml version='1.0' encoding='編碼格式' ?>",但它的編碼格式是GB2312,而.NET框架加載XML文件時(shí)若沒(méi)有找到XML聲明頭則使用的默認(rèn)編碼格式是UTF8,因此不能直接使用 System.XML.XmlDocument.Load 加載該文件。在此程序?qū)⑹褂肎B2312編碼格式(該編碼格式在.NET中的代碼為936)把C#工程文件當(dāng)作一個(gè)文本文件讀取其中所有的文本內(nèi)容,然后使用System.Xml.XmlDocument.LoadXml 加載XML文檔。
C#工程XML文檔中,從根節(jié)點(diǎn)出發(fā),路徑 VisualStudioProject/CSHARP/Build/Referencds/Reference 是指明工程使用的引用,也就是使用的DLL的文件名。而路徑 VisualStudioProject/CSHARP/Files/Include/File 則列出了工程中包含的所有的文件。程序?qū)⒗眠@兩個(gè)信息來(lái)獲得要拷貝的文件。此時(shí)程序拷貝所得的是干凈的C#項(xiàng)目,包含在C#項(xiàng)目目錄下的其他文件就不拷貝了。
程序把文件拷貝到一個(gè)臨時(shí)目錄后就調(diào)用WinRar的命令行程序來(lái)壓縮工程文件。如此完成壓縮備份C#工程。
點(diǎn)擊VS.NET的菜單項(xiàng)目"工具->宏->宏IDE",打開(kāi)了VS.NET的VBA.NET的集成開(kāi)發(fā)環(huán)境,編寫(xiě)代碼,然后切換到VS.NET的IDE,在工具條上右擊彈出快捷菜單,選擇最下面的"自定義"菜單項(xiàng)目,切換到"命令"頁(yè)面,在左邊的列表中選擇"宏",在右邊的列表中選中剛剛寫(xiě)好的VBA.NET的函數(shù),然后將其拖拽到VS.NET的工具條上,即可完成工具條按鈕和VBA.NET函數(shù)的綁定,此后你只有點(diǎn)擊這個(gè)按鈕就能壓縮備份你當(dāng)前編輯的C#工程了,實(shí)在是太方便了.以下就是操作過(guò)程的演示錄像.
完整的VBA.NET源代碼為
- Public Sub CreateCSProjectRAR()
- If CheckCSProject() = False Then
- Return
- End If
- Dim strPath As String
- Dim myPrj As EnvDTE.Project = DTE.ActiveWindow.Project
- strPath = System.IO.Path.GetFileNameWithoutExtension(myPrj.FullName)
- Dim strFileName As String
- //設(shè)置要保存生成的文件的目錄
- strPath = System.IO.Path.Combine
("D:\SourceBack", strPath & "[" & System.DateTime.Now.ToString("yyyy-MM-dd") & "]")- strFileName = strPath & ".rar"
- If System.IO.File.Exists(strFileName) Then
- System.IO.File.Delete(strFileName)
- End If
- Dim iCount As Integer = CopyCSProjectFiles(strPath)
- If System.IO.File.Exists(strFileName) Then
- System.IO.File.Delete(strFileName)
- End If
- If iCount > 0 Then
- DTE.StatusBar.Text = "正在生成壓縮文件"
- Dim start As New System.Diagnostics.ProcessStartInfo
- //此處指定 WinRar 壓縮軟件的可執(zhí)行文件名,若 WinRar安裝在其他的目錄則修改此文件名
- start.FileName = "C:\Program Files\WinRAR\WinRAR.exe"
- start.Arguments = "a -r -df -ep1 " & strFileName & " " & strPath
- Dim p As SystemSystem.Diagnostics.Process = System.Diagnostics.Process.Start(start)
- p.WaitForExit()
- DTE.StatusBar.Text = "已生成壓縮文件 " & strFileName
- MsgBox("已生成壓縮文件 " & strFileName, MsgBoxStyle.Information, "系統(tǒng)提示")
- End If
- End Sub
- //將當(dāng)前編輯的VS.NET2003的C#工程整體復(fù)制到用戶指定的目錄下,不支持VS.NET2005
- Public Sub CopyCSProject()
- //檢查是否是C#工程
- If CheckCSProject() = False Then
- Return
- End If
- //讓用戶輸入目錄
- Dim strPath As String = InputBox("請(qǐng)輸入輸出目錄名稱", "輸入")
- If strPath Is Nothing Then
- Return
- End If
- If strPath.Length = 0 Then
- Return
- End If
- //復(fù)制文件
- Dim iCount As Integer = CopyCSProjectFiles(strPath)
- MsgBox("共拷貝 " & iCount & " 個(gè)文件")
- End Sub
- //復(fù)制當(dāng)前VS.NET2003的C#工程的所有包含的文件到指定的目錄下,不支持VS.NET2005
- //不復(fù)制項(xiàng)目中使用絕對(duì)路徑引用的文件
- Public Function CopyCSProjectFiles(ByVal strPath As String) As Integer
- If CheckCSProject() = False Then
- Return -1
- End If
- If System.IO.Directory.Exists(strPath) = False Then
- System.IO.Directory.CreateDirectory(strPath)
- End If
- Dim myPrj As EnvDTE.Project = DTE.ActiveWindow.Project
- //加載項(xiàng)目文件
- Dim myFile As New System.IO.StreamReader
(myPrj.FullName, System.Text.Encoding.GetEncoding(936))- Dim myDoc As New System.Xml.XmlDocument
- myDoc.LoadXml(myFile.ReadToEnd())
- myFile.Close()
- Dim ThisPath As String = System.IO.Path.GetDirectoryName(myPrj.FullName)
- //復(fù)制項(xiàng)目定義文件本身
- CopyFile(myPrj.FullName, strPath)
- Dim FileCount As Integer
- Dim myElement As System.Xml.XmlElement
- Dim strFileName As String
- Dim strNewFileName As String
- //復(fù)制引用的文件
- For Each myElement In myDoc.SelectNodes
("VisualStudioProject/CSHARP/Build/Referencds/Reference")- strFileName = myElement.GetAttribute("HintPath")
- If System.IO.Path.IsPathRooted(strFileName) = False Then
- CopyFile(ThisPath, strPath, strFileName)
- FileCountFileCount = FileCount + 1
- End If
- Next
- //復(fù)制項(xiàng)目文件
- For Each myElement In myDoc.SelectNodes
("VisualStudioProject/CSHARP/Files/Include/File")- strFileName = myElement.GetAttribute("RelPath")
- If Not strFileName Is Nothing Then
- If System.IO.Path.IsPathRooted(strFileName) = False Then
- CopyFile(ThisPath, strPath, strFileName)
- FileCountFileCount = FileCount + 1
- DTE.StatusBar.Text = FileCount & " 正在復(fù)制文件 " & strFileName
- End If
- End If
- Next
- Return FileCount
- End Function
- //檢查當(dāng)前編輯的工程是不是C#工程
- Public Function CheckCSProject() As Boolean
- Dim myPrj As EnvDTE.Project = DTE.ActiveWindow.Project
- If UCase(System.IO.Path.GetExtension(myPrj.FullName)) <> ".CSPROJ" Then
- MsgBox("當(dāng)前工程不是 C# 工程", MsgBoxStyle.Information, "系統(tǒng)提示")
- Return False
- End If
- Return True
- End Function
- //創(chuàng)建指定的目錄
- Public Sub CreateDirectory(ByVal strDir As String)
- If System.IO.Directory.Exists(strDir) = False Then
- System.IO.Directory.CreateDirectory(strDir)
- End If
- End Sub
- //將指定目錄下的指定相對(duì)路徑的文件復(fù)制到另一個(gè)目錄,保持相對(duì)路徑不變
- Public Sub CopyFile(ByVal strPath1 As String,
ByVal strPath2 As String, ByVal strFilePath As String)- Dim strName1 As String = System.IO.Path.Combine(strPath1, strFilePath)
- Dim strName2 As String = System.IO.Path.Combine(strPath2, strFilePath)
- Dim dir1 As String = System.IO.Path.GetDirectoryName(strName1)
- If System.IO.Directory.Exists(dir1) = False Then
- System.IO.Directory.CreateDirectory(dir1)
- End If
- Dim dir2 As String = System.IO.Path.GetDirectoryName(strName2)
- If System.IO.Directory.Exists(dir2) = False Then
- System.IO.Directory.CreateDirectory(dir2)
- End If
- System.IO.File.Copy(strName1, strName2, True)
- End Sub
- //復(fù)制指定的文件到指定的目錄下
- Public Sub CopyFile(ByVal strFileName As String, ByVal strNewPath As String)
- System.IO.File.Copy(strFileName, System.IO.Path.Combine
(strNewPath, System.IO.Path.GetFileName(strFileName)), True)- End Sub
【編輯推薦】