Here is some code to get you started
Private Sub cmdExist_Click()
Dim fso As New FileSystemObject
Dim fFolder As Folder
Dim sFolder As String
Dim sFile As String
Dim sInfo As String
sFolder = "I:\Projects"
sFile = sFolder & "\Newt.txt"
Set fFolder = fso.GetFolder("c:"

If fso.FolderExists(sFolder) Then
MsgBox "Folder Exists"
If fso.FileExists(sFile) Then
MsgBox "File Exists"
sInfo = "File Version " & fso.GetFileVersion(sFile) & vbCrLf
MsgBox sInfo
Else
MsgBox "File Does Not Exists"
End If
Else
MsgBox "Folder Does Not Exists"
End If
End Sub
You will need to add a reference to the Microsoft Scripting Runtime Library. Hope this Helps.
Anything is possible, the problem is I only have one lifetime.
![[cheers] [cheers] [cheers]](/data/assets/smilies/cheers.gif)