91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

讀取注冊表二進制鍵值并分組顯示,代碼展示讀取C盤掛載信息

資源截圖

代碼片段和文件信息

using?Microsoft.Win32;
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?System.Threading.Tasks;

namespace?ConsoleAppShowReg
{
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????RegistryKey?driverKey?=?Registry.LocalMachine.OpenSubKey(@“SYSTEM\MountedDevices“);//按路徑打開注冊表
????????????byte[]?array?=?(byte[])driverKey.GetValue(“\\DosDevices\\C:“);//獲取DriverDesc值的字節數組
????????????string?decoded?=?System.Text.Encoding.UTF8.GetString(array);//將字節數組轉換成字符串
????????????decoded?=?decoded.Replace(“\0“?String.Empty);//由于將字節數組轉換成字符串的過程中,一般會包含\0字符,所以要將它替換成空字符串,否則顯示會有問題

????????????Console.WriteLine(decoded);
????????????Console.ReadLine();
????????????//
????????}
????}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-11-07?10:24??ConsoleAppShowReg\
?????文件????????1156??2019-11-07?10:25??ConsoleAppShowReg.sln
?????文件?????????184??2019-11-06?11:22??ConsoleAppShowReg\App.config
?????目錄???????????0??2019-11-07?10:22??ConsoleAppShowReg\bin\
?????目錄???????????0??2019-11-07?10:22??ConsoleAppShowReg\bin\Debug\
?????目錄???????????0??2019-11-07?10:22??ConsoleAppShowReg\bin\Release\
?????文件????????3307??2019-11-07?10:23??ConsoleAppShowReg\ConsoleAppShowReg.csproj
?????文件?????????482??2019-11-06?11:23??ConsoleAppShowReg\ConsoleAppShowReg.csproj.user
?????目錄???????????0??2019-11-07?10:17??ConsoleAppShowReg\obj\
?????目錄???????????0??2019-11-07?10:24??ConsoleAppShowReg\obj\Debug\
?????文件????????1200??2019-11-07?10:25??ConsoleAppShowReg\obj\Debug\ConsoleAppShowReg.csproj.FileListAbsolute.txt
?????文件?????????424??2019-11-07?10:25??ConsoleAppShowReg\obj\Debug\ConsoleAppShowReg.csprojAssemblyReference.cache
?????文件????????5120??2019-11-07?10:25??ConsoleAppShowReg\obj\Debug\ConsoleAppShowReg.exe
?????文件???????15872??2019-11-07?10:25??ConsoleAppShowReg\obj\Debug\ConsoleAppShowReg.pdb
?????文件?????????675??2019-11-06?11:23??ConsoleAppShowReg\obj\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件????????6584??2019-11-07?10:23??ConsoleAppShowReg\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????目錄???????????0??2019-10-23?17:42??ConsoleAppShowReg\obj\Debug\TempPE\
?????文件?????????922??2019-11-07?10:24??ConsoleAppShowReg\Program.cs
?????目錄???????????0??2019-11-07?10:24??ConsoleAppShowReg\Properties\
?????文件????????1326??2019-11-07?10:24??ConsoleAppShowReg\Properties\AssemblyInfo.cs

評論

共有 條評論