資源簡介
Visual C# 2015 C# 實現 文件加密保護的例子,包括了完整的源代碼,本加解密程序用起來很簡單,運行程序后,請選擇要加密或解密的文件,輸入設定好加/解密密碼,要注意密碼應大于6位,然后進行文件加/解密設置,確定后,將適時顯示加/解密進度,你可在本頁下載該示例完整項目源碼。
代碼片段和文件信息
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.IO;
using?System.Threading;
using?System.Security.Cryptography;
using?Microsoft.Win32;
//download?by?http://www.codesc.net
namespace?ProtectFile
{
????public?partial?class?Frm_Main?:?Form
????{
????????public?Frm_Main()
????????{
????????????InitializeComponent();
????????????CheckForIllegalCrossThreadCalls?=?false;
????????}
????????private?void?Form1_Load(object?sender?EventArgs?e)
????????{
????????????FileMenu(Application.ExecutablePath?+?“0“?Application.ExecutablePath);
????????????string[]?str?=?Environment.GetCommandLineArgs();
????????????try
????????????{
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????16384??2010-09-04?09:45??codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.exe
?????文件??????36352??2010-09-04?09:45??codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.pdb
?????文件??????14328??2010-09-04?09:44??codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.vshost.exe
?????文件????????490??2009-06-11?05:14??codesc.net\ProtectFile\ProtectFile\bin\Debug\ProtectFile.vshost.exe.manifest
?????文件????????766??2008-12-12?13:03??codesc.net\ProtectFile\ProtectFile\bin\Debug\加密.ico
?????文件??????10836??2018-10-05?22:52??codesc.net\ProtectFile\ProtectFile\Frm_Main.cs
?????文件???????8294??2010-09-04?09:45??codesc.net\ProtectFile\ProtectFile\Frm_Main.Designer.cs
?????文件???????6017??2008-12-12?13:18??codesc.net\ProtectFile\ProtectFile\Frm_Main.resx
?????文件????????495??2010-09-04?09:45??codesc.net\ProtectFile\ProtectFile\Program.cs
?????文件???????1376??2008-12-11?14:06??codesc.net\ProtectFile\ProtectFile\Properties\AssemblyInfo.cs
?????文件???????2872??2008-12-11?14:05??codesc.net\ProtectFile\ProtectFile\Properties\Resources.Designer.cs
?????文件???????5612??2008-12-11?14:05??codesc.net\ProtectFile\ProtectFile\Properties\Resources.resx
?????文件???????1096??2008-12-11?14:05??codesc.net\ProtectFile\ProtectFile\Properties\Settings.Designer.cs
?????文件????????249??2008-12-11?14:05??codesc.net\ProtectFile\ProtectFile\Properties\Settings.settings
?????文件???????3957??2010-09-04?09:45??codesc.net\ProtectFile\ProtectFile\ProtectFile.csproj
?????文件????????766??2008-12-12?13:04??codesc.net\ProtectFile\ProtectFile\加密.ico
?????文件????????923??2008-12-11?14:05??codesc.net\ProtectFile\ProtectFile.sln
????..A..H.?????21504??2010-12-30?09:50??codesc.net\ProtectFile\ProtectFile.suo
?????目錄??????????0??2018-10-05?20:49??codesc.net\ProtectFile\ProtectFile\bin\Debug
?????目錄??????????0??2018-10-05?20:49??codesc.net\ProtectFile\ProtectFile\bin
?????目錄??????????0??2018-10-05?20:49??codesc.net\ProtectFile\ProtectFile\Properties
?????目錄??????????0??2018-10-05?22:53??codesc.net\ProtectFile\ProtectFile
?????目錄??????????0??2018-10-05?20:49??codesc.net\ProtectFile
?????目錄??????????0??2018-10-05?22:53??codesc.net
-----------?---------??----------?-----??----
???????????????132317????????????????????24
評論
共有 條評論