VolumeQueryAllDosDevices Method (String) |
Retrieves a list of all existing MS-DOS device names.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static IEnumerable<string> QueryAllDosDevices(
string deviceName
)
Public Shared Function QueryAllDosDevices (
deviceName As String
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ QueryAllDosDevices(
String^ deviceName
)
static member QueryAllDosDevices :
deviceName : string -> IEnumerable<string>
Parameters
- deviceName
- Type: SystemString
(Optional, default: ) An MS-DOS device name string specifying the target of the query. This parameter can be
"sort". In that case a sorted list of all existing MS-DOS device names is returned. This parameter can be .
In that case, the QueryDosDevice(String, String) function will store a list of all existing MS-DOS device names into the buffer.
Return Value
Type:
IEnumerableStringAn
IEnumerableT with or more existing MS-DOS device names.
See Also