Volume
From Xojo Documentation
This item was deprecated in version 2019r2. Please use FolderItem.DriveAt as a replacement. |
Method
Returns a FolderItem that represents a mounted volume.
Syntax
result=Volume(VolumeNumber)
Part | Type | Description |
---|---|---|
result | FolderItem | The mounted volume whose number was passed. |
VolumeNumber | Integer | The number of the volume you require a FolderItem for. The boot volume is volume 0. |
Notes
The Volume function returns a FolderItem that represents the mounted volume whose number was passed. Volume zero is the boot volume. This function can be used in conjunction with the VolumeCount function to loop through the mounted volumes.
Examples
This example places the names of all mounted volumes into a ListBox control:
Dim vols As Integer
vols = VolumeCount - 1
For i As Integer = 0 To vols
ListBox1.AddRow(Volume(i).Name)
Next
vols = VolumeCount - 1
For i As Integer = 0 To vols
ListBox1.AddRow(Volume(i).Name)
Next
See Also
VolumeCount function; FolderItem class.