Yeah, i know. Floppy drives are so 90's. But i still have a question.

Why can't i check if a floppy is in the drive? Take a look at this code:
VB Code:
  1. Public Function fc_VerifyDirectory(ByVal sDirectory As String) As Boolean
  2.         sDirectory = sDirectory.Trim
  3.         If sDirectory = "" Then
  4.             fc_VerifyDirectory = False
  5.         Else
  6.             Try
  7.                 If Dir(sDirectory, FileAttribute.Directory) > "" Then fc_VerifyDirectory = True
  8.             Catch
  9.                 fc_VerifyDirectory = False
  10.             End Try
  11.         End If
  12.     End Function
It's a basic function to check if a directory exists. Give it a shot. Place a floppy in the drive, and call the function passing in "A:\". You'll get back False. Try it again with "C:\" and it returns True.

Strange?