TO Check if file exist in a Folder

VB Code:
  1. If Converted.txt Exist in Dir Then
  2.  
  3.  Open App.Path & "\210\February\Converted.txt" For Input As #1
  4.              Do Until EOF(1)
  5.                  Input #1, a, b, C, D
  6.                  Set itm = lv(intInd).ListItems.Add(, , a)
  7.                      itm.SubItems(1) = b
  8.                      itm.SubItems(2) = C
  9.                      itm.SubItems(3) = D
  10.                 Loop
  11. Else
  12.  
  13. cmdLoad.Enabled = False
  14. chkLoad.Enabled = False
  15. Exit Sub
  16. End If

vbMarkO