C # application: Read the hard drive serial number of the specified drive letter

Source: Internet
Author: User
Tags tostring
Hard disk

Using System;
Using System.IO;
Using System.Runtime.InteropServices;
Using System.Text;
Using Microsoft.Win32;

Namespace Wjb.readorwriteiniandreg
{
/**////
Read the hard drive sequence number of the specified drive letter
///
public class Harddiskval
{
[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
);
/**////
Get the hard drive serial number for the Drvid and the default is C
///
///
///
public string Hdval (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 ();
}
public string Hdval ()
{
const int Max_filename_len = 256;
int retVal = 0;
int a = 0;
int b = 0;
string str1 = null;
string str2 = null;

int i = GetVolumeInformation (
"C:\\",
STR1,
Max_filename_len,
Ref RetVal,
A
B
STR2,
Max_filename_len
);

return retval.tostring ();
}
}



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.