|
Displaying Source Code(s)
|
|
File Exist
--------------------------------------------------------------------------------
Description : Returns if file exist
Function FileExists(afile)
Dim fso
Set fso = NewFileSystem
FileExists = fso.FileExists(afile)
Set fso = Nothing
End Function
|
|
|