| | |
|
|
|
Re: Using Access 97 to organise jpg files |
| message from =?Utf-8?B?QWxleCBFbGJlcnQ=?= on 14 May 2004 |
Previous answer is correct if we are talking about jpgs. Note ,however, that function fileexists
Public Function FileExists(varFullPath As Variant) As Boolean
On Error Resume Next
If Len(varFullPath) > 0& Then
FileExists = (Len(Dir$(varFullPath)) > 0&)
End If
End Function
may return incorrect results if file has system or hidden attributes ..
|
|
Archived message: Re: Using Access 97 to organise jpg files (Microsoft Access Database)