Can anybody help, how to get unallocated space information in a disk using C# ?
feedback
|
|
If you want to know the total free space for a volume, you can use http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx You can also use WMI to fetch information about partitions on the disk, using Win32_DiskPartition: http://msdn.microsoft.com/en-us/library/aa394135%28VS.85%29.aspx You can use the Here's an article on MSDN that should give you all the help you need in using WMI: | |||
|
feedback
|
|
Try with something like this:
| |||
|
feedback
|