ACC97: Sample Procedure to Find the Location(s) of a FileID: Q171193
|
Advanced: Requires expert coding, interoperability, and multi-user skills.
This article describes how to create a sample user-defined function that
uses the FileSearch object contained in the Application object to locate a
file on a particular drive.
This article assumes that you are familiar with Visual Basic for
Applications and with creating Microsoft Access applications using the
programming tools provided with Microsoft Access. For more information
about Visual Basic for Applications, please refer to the "Building
Applications with Microsoft Access 97" manual.
The LocateFile() function takes the file that you are looking for as a
string argument and returns all locations of that file. To create the
function, follow these steps:
Option Explicit
Function LocateFile(strFileName as String)
Dim vItem As Variant
With Application.FileSearch
.FileName = strFileName
.LookIn = "c:\"
.SearchSubFolders = True
.Execute
For Each vItem In .FoundFiles
Debug.Print vItem
Next vItem
End With
End Function
?LocateFile("northwind.mdb")
For more information about using Visual Basic for Applications code to search for files, search the Help Index for "FileSearch object," and then click FoundFiles in the object tree at the top of the FileSearch Object Help topic.
Keywords : kbcode MdlGnrl
Version : 97
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: April 26, 1999