<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>the nullest blog &#187; Generic computer</title>
	<atom:link href="http://blog.thenullest.org/category/generic-computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thenullest.org</link>
	<description>Techrants</description>
	<lastBuildDate>Mon, 04 Jun 2007 05:36:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How do I get a list of all directories in a folder and all its subfolders?</title>
		<link>http://blog.thenullest.org/2007/05/18/how-do-i-get-a-list-of-all-directories-in-a-folder-and-all-its-subfolders/</link>
		<comments>http://blog.thenullest.org/2007/05/18/how-do-i-get-a-list-of-all-directories-in-a-folder-and-all-its-subfolders/#comments</comments>
		<pubDate>Fri, 18 May 2007 17:30:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Generic computer]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.thenullest.org/?p=4</guid>
		<description><![CDATA[For some reason I needed to get a list of all directories recursively and here is the solution:
On Windows based system, type:
&#62;dir /S /AD /B

/S makes it search recursively
/AD only list directories
/B no leading/trailing information

If you can use the unix based tool find you may prefer
$find -type d
where d stands for directory.
]]></description>
			<content:encoded><![CDATA[<p>For some reason I needed to get a list of all directories recursively and here is the solution:</p>
<p>On Windows based system, type:</p>
<p><code>&gt;dir /S /AD /B</code></p>
<ul>
<li><strong>/S</strong> makes it search recursively</li>
<li><strong>/AD</strong> only list directories</li>
<li><strong>/B</strong> no leading/trailing information</li>
</ul>
<p>If you can use the unix based tool <em>find </em>you may prefer</p>
<p><code>$find -type d</code></p>
<p>where <em>d</em> stands for directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenullest.org/2007/05/18/how-do-i-get-a-list-of-all-directories-in-a-folder-and-all-its-subfolders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
