Name

Application.FileFind

Synopsis

(Macintosh only.) Returns the FileFind object. The following code displays all of the files by Jeff:

Sub TestFind(  ) ' Macintosh only
    Dim s
    With Application.FileFind
        .Author = "Jeff"
        .Execute
        For Each s In .Results
            Debug.Print s
        Next
    End With
End Sub

Get Programming Excel with VBA and .NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.