Modify Find Code

  • Thread starter Thread starter Al
  • Start date Start date
A

Al

The following code finds Microsoft files which have been
modified today. I was wondering if it could be modified to
find Lotus files also which have been modified today.
Thanks in advance.

With Application.FileSearch
.NewSearch
.LookIn = "c:\reports"
.SearchSubFolders = False
.LastModified = msoLastModifiedToday
.Execute
 
Back
Top