Hi,
I currently have this code:
But my problem is that "names.txt" can be: Names.txt, NAMES.TXT, NaMeS.TxT, anything.
How do I make sure that it will just find "names.txt" , ignoring difference between capitals or lower case letters ?
Thanks in advance,
Evolution445
I currently have this code:
Code:
If IO.File.Exists(txt_Path.Text & "\names.txt") Then
SaveSetting("Search", "Main", "Found", "1")
MessageBox.Show("Found names.txt")
btn_Edit.Enabled = True
Else
SaveSetting("Search", "Main", "Found", "0")
MessageBox.Show("Could not find names.txt")
End If
How do I make sure that it will just find "names.txt" , ignoring difference between capitals or lower case letters ?
Thanks in advance,
Evolution445
Comment