Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / Windows Forms

Getting Drive's Volume Information using C#

Rate me:
Please Sign up or sign in to vote.
2.80/5 (7 votes)
20 Dec 2007CPOL 70.4K   2.3K   25   6
Getting Drive's Volume Information using C#

Introduction

First of all, I want to say sorry for my poor English. In this article, I try to explain how to get the volume information of our logical drives by using kernel32.dll.

Kernel32.dll

This DLL supports capabilities that are associated with OS such as:

  • Process loading
  • Context switching
  • File I/O
  • Memory management

GetVolumeInformation

This function is used to get the volume information of drive. It gives serial number, volume name and file type.

The following is the declaration of GetVolumeInformation function:

C#
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
static extern bool GetVolumeInformation(string Volume, StringBuilder VolumeName, 
	uint VolumeNameSize, out uint SerialNumber, out uint SerialNumberLength, 
	out uint flags, StringBuilder fs, uint fs_size);

DllImport is used to import the kernel32.dll file. The out variable SerialNumber will return the serial number of a given drive. Here, the following code will explain how to get volume information of a given drive.

C#
uint serialNum, serialNumLength, flags;
StringBuilder volumename = new StringBuilder(256);
StringBuilder fstype = new StringBuilder(256); 

bool ok = = GetVolumeInformation(drives, volumename, 
	(uint)volumename.Capacity - 1, out serialNum, out serialNumLength, 
	out flags, fstype, (uint)fstype.Capacity - 1);

if (ok)
 {
  lblVolume.Text = lblVolume.Text + "\n Volume Information of " + drives + "\n";
  lblVolume.Text = lblVolume.Text + "\nSerialNumber of is..... " + 
	serialNum.ToString() + " \n";
   if (volumename != null)
   {
   lblVolume.Text = lblVolume.Text + "VolumeName is..... " + 
	volumename.ToString() + " \n";
   }
if (fstype != null)
 {
 lblVolume.Text = lblVolume.Text + "FileType is..... " + fstype.ToString() + " \n";
 }

Hope this will help you. :)

History

  • 20th December, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Hi Viewers,

I wish to all. This is Vinoth. This is where I try to condense everything that you need to know about me.

Blog:

visit my blog

Interests:

I'm passionate about a great many things and continually learning about the things that interest me. They are wearable computers, User Interface Design, Artificial life, Industrial music.

Comments and Discussions

 
Questionget volume label Pin
vdeo112-Dec-13 19:21
vdeo112-Dec-13 19:21 
How can I get volume label or any unique id of the drive which is encrypted using bitlocker in win7?

Thanks in adv.
GeneralMy vote of 5 Pin
ArmandoHeck13-Feb-13 5:20
ArmandoHeck13-Feb-13 5:20 
GeneralSystem.IO.DriveInfo Pin
Daniele Rota Nodari17-Jul-12 23:30
Daniele Rota Nodari17-Jul-12 23:30 
GeneralRe: System.IO.DriveInfo Pin
ocelot-it24-Feb-13 20:16
ocelot-it24-Feb-13 20:16 
SuggestionRe: System.IO.DriveInfo Pin
Daniele Rota Nodari24-Feb-13 21:35
Daniele Rota Nodari24-Feb-13 21:35 
GeneralMy vote of 5 Pin
terenyang25-Oct-11 23:02
terenyang25-Oct-11 23:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.