IsThere2

Finds a file in giving its full path
Similar to IsThere1 except this one uses FSO.
Can be used in VBA, Classic ASP or even VB6

CodeFunctionName
What is this?

Public

Tested

Original Work
Function IsThere2(FilePath)
Dim FSO
' Classic ASP
' Set FSO = Server.CreateObject("Scripting.FileSystemObject")
' VBA or VB
Set FSO = CreateObject("Scripting.FileSystemObject")
IsThere2 = fso.FileExists(FilePath)
Set FSO = Nothing
End Function

FilePath

Views 1,445

Downloads 465

CodeID
DB ID