Multiple file filters for CFDIRECTORY

2000-10-13 Thread Aidan Whitehall
Is there any way doing this... CFDIRECTORY ACTION="LIST" DIRECTORY="C:\somedir\" FILTER="*.rsp,*.req" NAME="DirectoryListing" SORT="DATELASTMODIFIED DESC" so you can get a listing of all .rsp and .req files in a directory? This returns no results, BTW. -- Aidan Whitehall

Re: Multiple file filters for CFDIRECTORY

2000-10-13 Thread JustinMacCarthy
No but I'm in the middle of writting a Java CFX to do this.. send me a mail if you want to test it... Justin MacCarthy - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 13, 2000 10:59 AM Subject: M

RE: Multiple file filters for CFDIRECTORY

2000-10-13 Thread Aidan Whitehall
BTW, BF says you can provide a comma-delimited list for the SORT attribute. This works fine: SORT="DateLastModifed DESC" and so does this: SORT="Name ASC" but this doesn't give you the secondary sort (ie it's the same as the first example): SORT="DateLastModifed DESC, Name

RE: Multiple file filters for CFDIRECTORY

2000-10-13 Thread Simon Halcrow
F +44 (0)1642 702119 W www.sapphire.net -Original Message- From: Aidan Whitehall [SMTP:[EMAIL PROTECTED]] Sent: Friday, October 13, 2000 12:12 PM To: CF-Talk Subject: RE: Multiple file filters for CFDIRECTORY BTW, BF says you can provide a comma-delimited list

RE: Multiple file filters for CFDIRECTORY

2000-10-13 Thread Aidan Whitehall
Chances are that the DateLastModified is also taking into account the TIME too - are all the files time and datestamped the same? (i.e. 10/10/00 12:00)? Ahh, of course... that's probably it. Quick thinking Batman. Thanks. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced

RE: Multiple file filters for CFDIRECTORY

2000-10-13 Thread Richard Kern
:59 AM To: CF-Talk Subject: Multiple file filters for CFDIRECTORY Is there any way doing this... CFDIRECTORY ACTION="LIST" DIRECTORY="C:\somedir\" FILTER="*.rsp,*.req" NAME="DirectoryListing" SORT="DATELASTMODIFIED DESC" s