Re: Maintaining large website / finding many files
Re: Maintaining large website / finding many files
- Subject: Re: Maintaining large website / finding many files
- From: JollyRoger <email@hidden>
- Date: Thu, 09 Nov 2000 09:59:50 -0600
on 11/8/2000 8:17 PM, Wim Melis at email@hidden wrote:
>
Before I start looking into scripted uploads, I'd like to know if it's at
>
all possible to get the file list I need. 'Entire contents' is known to
>
be buggy, Sherlock is hardly scriptable and you can't edit its saved
>
search criteria as far as I can tell.
>
>
So: any ideas on how I can get a list of all 'modified since' files in a
>
huge folder and all its subfolders?
FindFile OSAX (at MicrocosmSoftware.com) will do what you want:
set myFolder to choose folder
set myDate to (current date) - (30 * 60 * 60 * 24) -- 30 days ago
set myList to FindFile in_folder myFolder ,
date_modified_is_after myDate with subfolders and display
return myList
Remember that you need to turn the "display" off to get the speediest
searches.
HTH
JR