Shane Trahan wrote: > I have some software that splits really large binary files up into smaller > files. Each one is then converted to Base64 and then uploaded to the CFsite.. > I can easily convert the base64 files to binary but I want to be able to then > merge the binary files together on the server?
How about cfexecute and the good old copy command: copy /B infile1 + infile2 + infile3 outfile Jochem ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292453 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

