using System;
using System.Runtime.InteropServices;
namespace ArLi.CommonPrj {
#region how use this?
/*
string sVol = getvol.GetVolOf("C");
*/
#endregion
public class getvol{
[DllImport("kernel32.dll")]
private static extern int GetVolumeInformation(
string lpRootPathName,
string lpVolumeNameBuffer,
int nVolumeNameSize,
ref int lpVolumeSerialNumber,
int lpMaximumComponentLength,
int lpFileSystemFlags,
string lpFileSystemNameBuffer,
int nFileSystemNameSize
);
public static string GetVolOf(string drvID){
const int MAX_FILENAME_LEN = 256;
int retVal = 0;
int a =0;
int b =0;
string str1 = null;
string str2 = null;
int i = GetVolumeInformation(
drvID + @":/",
str1,
MAX_FILENAME_LEN,
ref retVal,
a,
b,
str2,
MAX_FILENAME_LEN
);
return retVal.ToString("x");
}
}
}
此博客展示了一段C#代码,用于获取磁盘卷序列号。代码通过引入System和System.Runtime.InteropServices命名空间,定义了getvol类,使用DllImport调用kernel32.dll中的GetVolumeInformation函数,最终实现获取指定磁盘卷序列号的功能。
2795

被折叠的 条评论
为什么被折叠?



