<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Windows Software: Copy Handler to replace windows worst built-in file copy/paste feature!</title>
	<atom:link href="http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/feed/" rel="self" type="application/rss+xml" />
	<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/</link>
	<description></description>
	<lastBuildDate>Sat, 11 Feb 2012 09:22:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Serkan Birkan</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-135200</link>
		<dc:creator>Serkan Birkan</dc:creator>
		<pubDate>Tue, 12 Jan 2010 13:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-135200</guid>
		<description>Hello Rahul,

The Copy Handler is a very nice and detailed program. The only need is an extra filter like &quot;copy the newer file only&quot; :) Richard tried to mean that but I think there was a misunderstanding between you and him.

In the actual version, we have to click on &#039;copy&#039; or &#039;skip&#039; buttons whenever there exists a file with the same name. But with a filter I mentioned above, we can get rid of such a question. so the program automatically copy and replace only the newly modified file.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello Rahul,</p>
<p>The Copy Handler is a very nice and detailed program. The only need is an extra filter like &#8220;copy the newer file only&#8221; <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Richard tried to mean that but I think there was a misunderstanding between you and him.</p>
<p>In the actual version, we have to click on &#8216;copy&#8217; or &#8216;skip&#8217; buttons whenever there exists a file with the same name. But with a filter I mentioned above, we can get rid of such a question. so the program automatically copy and replace only the newly modified file.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RONron</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-124209</link>
		<dc:creator>RONron</dc:creator>
		<pubDate>Fri, 06 Nov 2009 06:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-124209</guid>
		<description>I don&#039;t think that&#039;s how XCOPY works exactly. If the /D switch copies the file is the date is the same or newer, as far as I can tell.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think that&#8217;s how XCOPY works exactly. If the /D switch copies the file is the date is the same or newer, as far as I can tell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BLBush</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-97946</link>
		<dc:creator>BLBush</dc:creator>
		<pubDate>Thu, 14 May 2009 15:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-97946</guid>
		<description>Richard&#039;s request is met by the Windows command-prompt command
    XCOPY  {source}  {destination} /Y /S /D
for example
    cd  {source_dir}
    XCOPY *.*  {destination_dir} /Y /S /D
 /D : compare file datestamps (I don&#039;t know whether Created or
     Modified -- please check this}  and copy only if newer
 /S :  traverse subdirectories of {source_dir}.  
    (I don&#039;t know if it creates subdirs as needed).
  /Y :  suppresses prompting

Alternative /D:{date_description}  tests source datestamp
against a fixed date rather than destination file date.
This is good for incremental backups.

To see lots of other options (EXCLUDE lists, etc),  XCOPY /?

The Command Prompt is available in Windows XP as 
  %SystemRoot%\system32\cmd.exe
I put it onto my Start menu.  Don&#039;t know about Windows Vista.
Rather than type {source_dir}, {target_dir}, just drag them
from the Windows Explorer into the command prompt window; 
filepath string will be pasted within double_quotes. 
Be sure to leave spaces on either side.  

Super-easy, super-effective.  Thanks to Rahul and to Richard
for inciting me finally to look for a Windows equivalent to
Unix (rsync) and (xcopy) [duh... it&#039;s &quot;XCOPY&quot;!).</description>
		<content:encoded><![CDATA[<p>Richard&#8217;s request is met by the Windows command-prompt command<br />
    XCOPY  {source}  {destination} /Y /S /D<br />
for example<br />
    cd  {source_dir}<br />
    XCOPY *.*  {destination_dir} /Y /S /D<br />
 /D : compare file datestamps (I don&#8217;t know whether Created or<br />
     Modified &#8212; please check this}  and copy only if newer<br />
 /S :  traverse subdirectories of {source_dir}.<br />
    (I don&#8217;t know if it creates subdirs as needed).<br />
  /Y :  suppresses prompting</p>
<p>Alternative /D:{date_description}  tests source datestamp<br />
against a fixed date rather than destination file date.<br />
This is good for incremental backups.</p>
<p>To see lots of other options (EXCLUDE lists, etc),  XCOPY /?</p>
<p>The Command Prompt is available in Windows XP as<br />
  %SystemRoot%\system32\cmd.exe<br />
I put it onto my Start menu.  Don&#8217;t know about Windows Vista.<br />
Rather than type {source_dir}, {target_dir}, just drag them<br />
from the Windows Explorer into the command prompt window;<br />
filepath string will be pasted within double_quotes.<br />
Be sure to leave spaces on either side.  </p>
<p>Super-easy, super-effective.  Thanks to Rahul and to Richard<br />
for inciting me finally to look for a Windows equivalent to<br />
Unix (rsync) and (xcopy) [duh&#8230; it&#8217;s &#8220;XCOPY&#8221;!).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Bansal</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75696</link>
		<dc:creator>Rahul Bansal</dc:creator>
		<pubDate>Tue, 02 Dec 2008 15:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75696</guid>
		<description>&lt;a href=&quot;#comment-75594&quot; rel=&quot;nofollow&quot;&gt;@richard&lt;/a&gt; -
Thanks for more inputs. :-)
I will use second copy if I stuck in future.</description>
		<content:encoded><![CDATA[<p><a href="#comment-75594" rel="nofollow">@richard</a> -<br />
Thanks for more inputs. <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
I will use second copy if I stuck in future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75594</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Mon, 01 Dec 2008 18:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75594</guid>
		<description>i tried copy handler.  it does not have an option to AUTOMATICALLY query and replace destination file ONLY if there is a newer file on the copy-from directory.  it is all manual query.  thus, it could not help me.</description>
		<content:encoded><![CDATA[<p>i tried copy handler.  it does not have an option to AUTOMATICALLY query and replace destination file ONLY if there is a newer file on the copy-from directory.  it is all manual query.  thus, it could not help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Bansal</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75590</link>
		<dc:creator>Rahul Bansal</dc:creator>
		<pubDate>Mon, 01 Dec 2008 17:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75590</guid>
		<description>&lt;a href=&quot;#comment-75588&quot; rel=&quot;nofollow&quot;&gt;@richard&lt;/a&gt; -
Its nice to know your problem is solved richard.

Just for info, copy-handler can do same job. It may not seem user-friendly to you but it is capable of doing this.
For example, for 1000 file... you just need to do 2/3 clicks and all will go fine! :-)

Anyway... thanks for telling me about second copy!  I will definitely try it... :)</description>
		<content:encoded><![CDATA[<p><a href="#comment-75588" rel="nofollow">@richard</a> -<br />
Its nice to know your problem is solved richard.</p>
<p>Just for info, copy-handler can do same job. It may not seem user-friendly to you but it is capable of doing this.<br />
For example, for 1000 file&#8230; you just need to do 2/3 clicks and all will go fine! <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Anyway&#8230; thanks for telling me about second copy!  I will definitely try it&#8230; <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75588</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Mon, 01 Dec 2008 17:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75588</guid>
		<description>that is no different than Windows copy.  that is exactly what i DONT want to do: to assess EACH duplicate file for whether it is new or not.  i have 1000 to go through that way.  a computer program can assess the date/time and make the switch.  i dont need to spend the time doing it, and it is impractical.  

after more snooping around, i found a program called second copy.  it does exactly what i want.  it will even synchronize the two directories so they are exactly the same, no matter which was used for storing the most recent version.  this allows me to work between two computers and update them as i wish.</description>
		<content:encoded><![CDATA[<p>that is no different than Windows copy.  that is exactly what i DONT want to do: to assess EACH duplicate file for whether it is new or not.  i have 1000 to go through that way.  a computer program can assess the date/time and make the switch.  i dont need to spend the time doing it, and it is impractical.  </p>
<p>after more snooping around, i found a program called second copy.  it does exactly what i want.  it will even synchronize the two directories so they are exactly the same, no matter which was used for storing the most recent version.  this allows me to work between two computers and update them as i wish.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Bansal</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75585</link>
		<dc:creator>Rahul Bansal</dc:creator>
		<pubDate>Mon, 01 Dec 2008 17:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75585</guid>
		<description>&lt;a href=&quot;#comment-75269&quot; rel=&quot;nofollow&quot;&gt;@richard&lt;/a&gt; -
With copy handler, you start file copying/moving the normal way.
When duplicates files-names are encountered, it prompt for you take an action like replace, delete etc. It displays other info like size, date, etc about both file in question. 
Also prompt screen allows you to set your choice for entire operation.
When duplicate directories are encountered, they are always merged.

What I said above is about default settings. You can go to copy handler settings and set answers to all such &quot;prompt questions&quot; in advance as well.

Also you can pause/resume copying in between. :-)</description>
		<content:encoded><![CDATA[<p><a href="#comment-75269" rel="nofollow">@richard</a> -<br />
With copy handler, you start file copying/moving the normal way.<br />
When duplicates files-names are encountered, it prompt for you take an action like replace, delete etc. It displays other info like size, date, etc about both file in question.<br />
Also prompt screen allows you to set your choice for entire operation.<br />
When duplicate directories are encountered, they are always merged.</p>
<p>What I said above is about default settings. You can go to copy handler settings and set answers to all such &#8220;prompt questions&#8221; in advance as well.</p>
<p>Also you can pause/resume copying in between. <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75269</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Fri, 28 Nov 2008 17:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75269</guid>
		<description>i downloaded it.  as far as i can tell, it is no better for my purpose than windows copy replace.  i dont see where it allows me to specify &quot;replace older files only&quot;.  

this seems like such an obvious option.  i dont know why it isnt available!

any other ideas?

rpj</description>
		<content:encoded><![CDATA[<p>i downloaded it.  as far as i can tell, it is no better for my purpose than windows copy replace.  i dont see where it allows me to specify &#8220;replace older files only&#8221;.  </p>
<p>this seems like such an obvious option.  i dont know why it isnt available!</p>
<p>any other ideas?</p>
<p>rpj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Bansal</title>
		<link>http://devilsworkshop.org/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75264</link>
		<dc:creator>Rahul Bansal</dc:creator>
		<pubDate>Fri, 28 Nov 2008 16:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.devilsworkshop.org/2007/04/23/windows-software-copy-handler-to-replace-windows-worst-built-in-file-copypaste-feature/#comment-75264</guid>
		<description>&lt;a href=&quot;#comment-75042&quot; rel=&quot;nofollow&quot;&gt;@richard&lt;/a&gt; -
Your welcome buddy... :-)
Welcome To Devils Workshop! ;-)</description>
		<content:encoded><![CDATA[<p><a href="#comment-75042" rel="nofollow">@richard</a> -<br />
Your welcome buddy&#8230; <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Welcome To Devils Workshop! <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 8/14 queries in 0.019 seconds using apc
Object Caching 409/415 objects using apc

Served from: devilsworkshop.org @ 2012-02-12 12:00:25 -->
