Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
GetDiskFreeSpace (kernel32)
.
C# Signature:
[DllImport("kernel32.dll", SetLastError=true, CharSet=CharSet.Auto)]
static extern bool GetDiskFreeSpace(string lpRootPathName,
out uint lpSectorsPerCluster,
out uint lpBytesPerSector,
out uint lpNumberOfFreeClusters,
out uint lpTotalNumberOfClusters);
VB.Net Signature:
Declare Auto Function GetDiskFreeSpace Lib "kernel32.dll" (ByVal lpRootPathName As String, _
ByRef lpSectorsPerCluster As UInt32, _
ByRef lpBytesPerSector As UInt32, _
ByRef lpNumberOfFreeClusters As UInt32, _
ByRef lpTotalNumberOfClusters As UInt32) As Integer
Notes:
On Windows 95/98 the GetDiskFreeSpace function cannot report volume sizes that are greater than 2 gigabytes (GB). To ensure that your application works with large capacity hard drives, use the GetDiskFreeSpaceEx function. On Windows NT and Windows 2000, GetDiskFreeSpace is not limited to 2GB; it reports the full size of the drive and the full amount of free space. See http://support.microsoft.com/kb/231497 .
Tips & Tricks:
If you are reading information for multiple drives and/or do not need sector cluster information, use the Managed API instead (System.IO.DriveInfo)
GetDiskFreeSpace("C:\\", out SectorsPerCluster, out BytesPerSector,
out NumberOfFreeClusters, out TotalNumberOfClusters);
Console.WriteLine("Sectors Per Cluster: {0}", SectorsPerCluster);
Console.WriteLine("Bytes Per Sector: {0}", BytesPerSector);
Console.WriteLine("Number Of Free Clusters: {0}", NumberOfFreeClusters);
Console.WriteLine("Total Number Of Clusters: {0}", TotalNumberOfClusters);
// SectorsPerCluster * BytesPerSection will give you how many bytes are available per sector
// And by multiplying the result with NumberOfFreeClusters gives you the free space in bytes.
long Bytes = (long)NumberOfFreeClusters * SectorsPerCluster * BytesPerSector;
Console.WriteLine("Total Free Space in bytes: {0} ", Bytes);
decimal KiloBytes = (decimal)Bytes / 1024;
Console.WriteLine("Total Free Space in kilo bytes: {0}", KiloBytes);
decimal MegaBytes = (decimal)KiloBytes / 1024;
Console.WriteLine("Total Free Space in mega bytes: {0}", MegaBytes);
decimal GigaBytes = (decimal)MegaBytes / 1024;
Console.WriteLine("Total Free Space in giga bytes: {0}", GigaBytes);
Console.WriteLine("Please enter any key to exit...");
Console.ReadLine();
You must enumerate all of your drives before information can be reviewed (using the DriveInfo.GetDrives() method (Why? new DriveInfo("C").AvailableFreeSpace works for me)
Retrieves information about the amount of space available on a disk volume.
7/13/2015 12:58:23 PM - -72.248.115.51
Retrieves information about the amount of space available on a disk volume.
7/13/2015 12:58:23 PM - -72.248.115.51
http://mwinapi.sourceforge.net/
3/31/2008 6:53:29 AM - -217.54.254.83
Click to read this page
11/22/2022 6:00:24 AM - -171.251.237.238
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).