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.
bufferLength, The maximum size of the buffer pointed to by buffer, in TCHARs. This size does not include the terminating null character. If this parameter is zero, buffer is not used.
buffer, A pointer to a buffer that receives a series of null-terminated strings, one for each valid drive in the system, plus with an additional null character. Each string is a device name.
Notes:
Returns a 32 bit value representing the availability of the drives of the computer.
If A: is present first bit is 1. If C: is present 3rd bit is 1. If not present zero is assigned.
public static void Main()
{
const int size = 512;
char[] buffer = new char[size];
uint code = GetLogicalDriveStrings(size, buffer);
if (code == 0)
{
Console.WriteLine("Call failed");
return;
}
StringCollection list = new StringCollection();
int start = 0;
for (int i = 0; i < code; ++i)
{
if (buffer[i] == 0)
{
string s = new string(buffer, start, i - start);
list.Add(s);
start = i + 1;
}
}
foreach (string s in list)
Console.WriteLine(s);
}
}
Alternative Managed API:
public static string[] System.Environment.GetLogicalDrives();
public static System.IO.DriveInfo[] System.IO.DriveInfo.GetDrives();
Fills a buffer with strings that specify valid drives in the system. If the function succeeds, the return value is the length, in characters, of the strings copied to the buffer, not including the terminating null character.
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).