Desktop Functions: Smart Device Functions:
|
Search Results for "QueryDosDevice" in [All]kernel32
internal static extern uint QueryDosDevice(string lpDeviceName,
static extern uint QueryDosDevice(string lpDeviceName, IntPtr lpTargetPath, uint ucchMax);
static extern uint QueryDosDevice(string lpDeviceName, StringBuilder lpTargetPath, int ucchMax);
<DllImport("Kernel32.dll", EntryPoint:="QueryDosDevice")>
Public Shared Function QueryDosDevice(lpDeviceName As String, lpTargetPath As System.Text.StringBuilder, ucchMax As Integer) As Integer
Private Function QueryDosDevice(ByVal device As String) As List(Of String)
' QueryDosDevice will return everything available.
returnSize = CInt(QueryDosDevice(device, mem, maxSize))
private static string[] QueryDosDevice()
returnSize = QueryDosDevice(null, mem, maxSize);
QueryDosDevice(driveLetter, pathInformation, 250); |