Re: copy directory

2004-12-06 Thread Massimo Foti
> Is it possible to copy a directory and all its contents without using > cfexecute? http://www.olimpo.ch/tmt/cfc/tmt_file_io This CFC does copy, move, delete and more Massimo Foti DW tools: http://www.massimocorner.com CF tools: http://www.olimpo.ch/tmt/ -

RE: copy directory

2004-12-03 Thread Martin Parry
03:01 To: CF-Talk Subject: Re: copy directory For what it's worth, I also wrote a deleteDirectory() UDF that deletes a directory and all its contents, based on the same code. Thanks a ton, Martin! http://www.webworksllc.com/lib/copyDirectory.txt http://www.webworksllc.com/lib

Re: copy directory

2004-12-03 Thread Rick Root
For what it's worth, I also wrote a deleteDirectory() UDF that deletes a directory and all its contents, based on the same code. Thanks a ton, Martin! http://www.webworksllc.com/lib/copyDirectory.txt http://www.webworksllc.com/lib/deleteDirectory.txt - Rick ~~

Re: copy directory

2004-12-03 Thread Rick Root
For what it's worth, I also wrote a deleteDirectory() UDF that deletes a directory and all its contents, based on the same code. Thanks a ton, Martin! http://www.webworksllc.com/lib/copyDirectory.txt http://www.webworksllc.com/lib/deleteDirectory.txt - Rick ~~

Re: copy directory

2004-12-03 Thread Rick Root
Martin Parry wrote: > Here's a piece of code I wrote to do just that.. Note There's a module > called act_make_folder - You just need to replace that with your own > code to make the destination folder. Call it as a Customtag or CFModule > passing the source and destination. Martin, that's great.

RE: copy directory

2004-12-03 Thread Martin Parry
Here's a piece of code I wrote to do just that.. Note There's a module called act_make_folder - You just need to replace that with your own code to make the destination folder. Call it as a Customtag or CFModule passing the source and destination. Martin Parry http://www.beetrootstreet.com

Re: copy directory

2004-12-03 Thread Alex Sherwood
Rick Root wrote: I would imagine you query the directory and do a simple loop to iterate the files and copy them. The zip solution you mentioned might actually be less code and faster, in terms of copying. -- A >Is it possible to copy a directory and all its contents without using >cfexecute?