List all available Drives : FileSystem « Stream File « VB.Net Tutorial






Option Strict On

Imports System.Collections.ObjectModel
Imports System.IO

Public Module IterateDrives
   Public Sub Main()
      Dim drives As ReadOnlyCollection(Of DriveInfo)
      drives = My.Computer.FileSystem.Drives
      For Each drive As DriveInfo In drives
         Console.WriteLine(drive.Name)
      Next
   End Sub
End Module
C:\
D:\








13.7.FileSystem
13.7.1.List all available Drives
13.7.2.Find in files
13.7.3.My.Computer.FileSystem.ReadAllText
13.7.4.My.Computer.FileSystem.WriteAllText
13.7.5.My.Computer.FileSystem.CurrentDirectory
13.7.6.Test for a valid directory
13.7.7.My.Computer.FileSystem.DirectoryExists
13.7.8.Drive TotalFreeSpace, AvailableFreeSpace and TotalSize
13.7.9.My.Computer.FileSystem.FileExists(''FileName'')
13.7.10.Use pattern(wildcard) to match directories
13.7.11.Use pattern(wildcard) to match files
13.7.12.My.Computer.FileSystem.FindInFiles
13.7.13.My.Computer.FileSystem.GetParentPath