<?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: Delete Files and Folders Recursively Using Command Prompt</title> <atom:link href="http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/feed" rel="self" type="application/rss+xml" /><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html</link> <description>Know your technology head on</description> <lastBuildDate>Sun, 27 May 2012 14:43:25 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Andrew</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-561508</link> <dc:creator>Andrew</dc:creator> <pubDate>Tue, 18 Oct 2011 07:16:20 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-561508</guid> <description>Thank you WIlbur, i had a large project that wasn&#039;t properly exported from SVN and your solution solved my problem</description> <content:encoded><![CDATA[<p>Thank you WIlbur, i had a large project that wasn&#8217;t properly exported from SVN and your solution solved my problem</p> ]]></content:encoded> </item> <item><title>By: WIlbur</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-330279</link> <dc:creator>WIlbur</dc:creator> <pubDate>Mon, 25 Apr 2011 14:19:00 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-330279</guid> <description>Ok, ok, here ya go:FOR /R %d IN (.svn) DO rmdir /s /q &quot;%d&quot;</description> <content:encoded><![CDATA[<p>Ok, ok, here ya go:</p><p>FOR /R %d IN (.svn) DO rmdir /s /q &#8220;%d&#8221;</p> ]]></content:encoded> </item> <item><title>By: WIlbur</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-330273</link> <dc:creator>WIlbur</dc:creator> <pubDate>Mon, 25 Apr 2011 14:11:08 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-330273</guid> <description>This only deletes a folder in the current directory.  The &quot;/s&quot; option includes the folder&#039;s files, it does not recurse down the tree.  I am hoping you&#039;ll update this article to do the actually hard part of recursively removing ever folder under a root that matches the pattern.</description> <content:encoded><![CDATA[<p>This only deletes a folder in the current directory.  The &#8220;/s&#8221; option includes the folder&#8217;s files, it does not recurse down the tree.  I am hoping you&#8217;ll update this article to do the actually hard part of recursively removing ever folder under a root that matches the pattern.</p> ]]></content:encoded> </item> <item><title>By: Arjuna Krishna-Das</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-144124</link> <dc:creator>Arjuna Krishna-Das</dc:creator> <pubDate>Thu, 26 Aug 2010 14:10:54 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-144124</guid> <description>I&#039;m looking for a batch file solution which will delete all the CONTENTS of a folder (files and folders, recursively), but NOT the folder itself. I&#039;ve been searching for hours but can&#039;t find anything. The clunky solution would seem to be to delete the folder itself then recreate it with mkdir, but the folder is shared, and when I recreate it like this, it isn&#039;t shared anymore. Any ideas?</description> <content:encoded><![CDATA[<p>I&#8217;m looking for a batch file solution which will delete all the CONTENTS of a folder (files and folders, recursively), but NOT the folder itself. I&#8217;ve been searching for hours but can&#8217;t find anything. The clunky solution would seem to be to delete the folder itself then recreate it with mkdir, but the folder is shared, and when I recreate it like this, it isn&#8217;t shared anymore. Any ideas?</p> ]]></content:encoded> </item> <item><title>By: joshuaslocum</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-136691</link> <dc:creator>joshuaslocum</dc:creator> <pubDate>Tue, 10 Aug 2010 10:28:34 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-136691</guid> <description>rmdir is NOT recursive...... </description> <content:encoded><![CDATA[<p>rmdir is NOT recursive&#8230;&#8230;</p> ]]></content:encoded> </item> <item><title>By: Keith Dsouza</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-65381</link> <dc:creator>Keith Dsouza</dc:creator> <pubDate>Mon, 08 Mar 2010 16:57:42 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-65381</guid> <description>@gourab - The command mentioned above will delete all the sub-directories and files in a directory Just use &quot;rmdir /S directoryname&quot; command </description> <content:encoded><![CDATA[<p>@gourab &#8211; The command mentioned above will delete all the sub-directories and files in a directory</p><p>Just use &quot;rmdir /S directoryname&quot; command</p> ]]></content:encoded> </item> <item><title>By: gourab</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-64914</link> <dc:creator>gourab</dc:creator> <pubDate>Sun, 07 Mar 2010 12:47:25 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-64914</guid> <description>how will i delete a folder in command prompt having some data in it(means folder is not empty.) </description> <content:encoded><![CDATA[<p>how will i delete a folder in command prompt having some data in it(means folder is not empty.)</p> ]]></content:encoded> </item> <item><title>By: Binny V A</title><link>http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html/comment-page-1#comment-38819</link> <dc:creator>Binny V A</dc:creator> <pubDate>Fri, 17 Jul 2009 17:26:51 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/tips-and-tricks/delete-folders-recursively-using-command-prompt.html#comment-38819</guid> <description>In linux, the command to do this is &lt;code&gt;rm -rf folder_name&lt;/code&gt;</description> <content:encoded><![CDATA[<p>In linux, the command to do this is <code>rm -rf folder_name</code></p> ]]></content:encoded> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              11546
Template:           single
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 5/22 queries in 0.071 seconds using memcached
Object Caching 719/734 objects using memcached
Content Delivery Network via cdn4.techie-buzz.com

Served from: www.techie-buzz.com @ 2012-05-27 12:23:34 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          tips-and-tricks/delete-folders-recursively-using-command-prompt.html/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.282s
Header info:
X-Pingback:         http://techie-buzz.com/xmlrpc.php
Link:               <http://wp.me/p4tVd-1k8>; rel=shortlink
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Sun, 27 May 2012 16:23:34 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Sun, 27 May 2012 16:33:34 GMT
Pragma:             public
Cache-Control:      max-age=600, public, must-revalidate, proxy-revalidate
Etag:               0f883ae496b2e58588c46ca7a758de2a
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
-->
