
|
| |  |  | End Of Month |
|
|
| |  |  | First Of Last Month |
|
|
| |  |  | Make Directory |
|
|
Check File Exists
Home :: Visual Basic :: Does Files Exist
Here's a simple Visual Basic function you can use in Vb6+/MS Access to check if a file exists.
Public
Function
FileExists(F As
String) As
Boolean '
Tests for the existence of a file Dim X As Long
On Error Resume Next X =
FileLen(F) If X Then FileExists =
True Else
FileExists = False End If End Function |
Please Link to us
Next >> Get Filesize
|