DriveInfo.IsReady() : DriveInfo « System.IO « VB.Net by API






DriveInfo.IsReady()

  
Imports System
Imports System.IO


Public Class MainClass

   Shared Sub Main()
        For Each drive_info As DriveInfo In DriveInfo.GetDrives()
            Console.Write(drive_info.Name & "   " )
            Console.WriteLine(drive_info.IsReady().ToString)

        Next drive_info

   End Sub 

End Class

   
    
  








Related examples in the same category

1.DriveInfo.AvailableFreeSpace()
2.DriveInfo.DriveFormat()
3.DriveInfo.DriveType()
4.DriveInfo.GetDrives()
5.DriveInfo.Name
6.DriveInfo.RootDirectory
7.DriveInfo.TotalFreeSpace()
8.DriveInfo.VolumeLabel()