FZ_FormBase.GetDriveList
Gets the list of drive information
Public Shared Function GetDriveList( _
ByRef driveList As String() _
) As Integer
Parameters
driveList
|
List of drive information
|
Output
|
Return Value
Returns 0 when the list of drive information is successfully obtained.
Otherwise returns a non-zero value.
Description
Gets the drive information list which is stored drive names A, B, C, D etc. in the string type array.
The A, B, C, D drive in the FZ application is invisible, but returns all drive names by this API.
Example
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim driveList As String() = {""}
' Gets the list of drive information
GetDriveList(driveList)
End Sub