Re: Sort by file extension in CFDIRECTORY

2014-07-31 Thread Nick Voss
It does, unfortunately it doesn't have the file extension as part of the object, so you'll need to add that column to the query object and run through the results separating the file name and filee xtension out to then sort by either column interchangeably. Nick I'd look at putting it

Re: Invalid Data for Parameter but which one?

2014-07-31 Thread Richard White
thanks guys, bit sounds good! Actually, the error is telling you exactly what is wrong. You are sending a string value of false to a field that only allows a maximum of 1 character. More than likely, you are trying to send a true/false value to a char(1) field. Try either converting your

Encrypting Zip File

2014-07-31 Thread Richard White
Hi, What is the best way to encrypt a zip file in ColdFusion? Many thanks, Richard ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Encrypting Zip File

2014-07-31 Thread John M Bliss
Maybe http://www.andyscott.id.au/blog/getting-better-zip-support-in-coldfusion-with-zip4j On Thu, Jul 31, 2014 at 12:18 PM, Richard White rich...@re-base.net wrote: Hi, What is the best way to encrypt a zip file in ColdFusion? Many thanks, Richard

re: Encrypting Zip File

2014-07-31 Thread Jeff Garza
In addition to zip4j, you can also look at installing 7Zip (http://www.7-zip.org/) on the server (if possible) and using the CLI interface to that via cfexecute. -- Jeff Original Message From: Richard White rich...@re-base.net Sent: Thursday, July 31, 2014 9:19

Re: Encrypting Zip File

2014-07-31 Thread Nick Voss
cfzip supports encryption out-of-box I believe zip cfzip required file = absolute pathname One of the following: source = source directory cfzipparam source = source directory ... optional encryptionAlgorithm = standard|AES-128|AES-256 password = password

Re: Sort by file extension in CFDIRECTORY

2014-07-31 Thread Dave Watts
It does, unfortunately it doesn't have the file extension as part of the object, so you'll need to add that column to the query object and run through the results separating the file name and filee xtension out to then sort by either column interchangeably. Good point! Sometimes I forget