<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
		>
<channel>
	<title>Comments on: How To Print A Directory Tree From Windows Explorer</title>
	<atom:link href="http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html</link>
	<description>Computer - Internet - Technology Tips And Tutorials</description>
	<lastBuildDate>Tue, 16 Mar 2010 17:30:39 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ron Guidotti</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22114</link>
		<dc:creator>Ron Guidotti</dc:creator>
		<pubDate>Wed, 27 Jan 2010 23:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22114</guid>
		<description>As a followup to Sean and Ryan and Jim, to print only the directories and not the files and directories, just type the following at the DOS promt: 
dir&gt; /ad &gt; directory_files.txt. This prints the output to a text file (directory_files.txt). It can be opened and edited, if need be, and then printed.   No need to write a batch file.</description>
		<content:encoded><![CDATA[<p>As a followup to Sean and Ryan and Jim, to print only the directories and not the files and directories, just type the following at the DOS promt:<br />
dir&gt; /ad &gt; directory_files.txt. This prints the output to a text file (directory_files.txt). It can be opened and edited, if need be, and then printed.   No need to write a batch file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22112</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 27 Jan 2010 20:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22112</guid>
		<description>You can print the tree by using...

@echo off
tree /a %1 &gt; &quot;%temp%\Listing&quot;
start /w notepad /p &quot;%temp%\Listing&quot;
del &quot;%temp%\Listing&quot;
exit</description>
		<content:encoded><![CDATA[<p>You can print the tree by using&#8230;</p>
<p>@echo off<br />
tree /a %1 &gt; &#034;%temp%\Listing&#034;<br />
start /w notepad /p &#034;%temp%\Listing&#034;<br />
del &#034;%temp%\Listing&#034;<br />
exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Watching The Net</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22003</link>
		<dc:creator>Watching The Net</dc:creator>
		<pubDate>Wed, 13 Jan 2010 21:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-22003</guid>
		<description>@Sean &amp; Ryan

Try this:

dir /ad /s</description>
		<content:encoded><![CDATA[<p>@Sean &#038; Ryan</p>
<p>Try this:</p>
<p>dir /ad /s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21994</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 13 Jan 2010 04:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21994</guid>
		<description>Just bumping Sean&#039;s comment. I also need to print only folders not files. otherwise it&#039;s about 500 pages lol</description>
		<content:encoded><![CDATA[<p>Just bumping Sean&#039;s comment. I also need to print only folders not files. otherwise it&#039;s about 500 pages lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Guidotti</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21936</link>
		<dc:creator>Ron Guidotti</dc:creator>
		<pubDate>Sun, 10 Jan 2010 05:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21936</guid>
		<description>I found an easy way to get a list of files in a directory while in Explorer to print to a printer connected to a USB (or the default) port.  Just go to the DOS prompt and change to the directory of interest.  Then type the following at the DOS promt:  dir&gt; directory_files.txt.  This prints the output to a text file (directory_files.txt) in that directory.  It can be opened and edited, if need be, and then printed.  This works fine in Windows XP and is as simple as it gets.</description>
		<content:encoded><![CDATA[<p>I found an easy way to get a list of files in a directory while in Explorer to print to a printer connected to a USB (or the default) port.  Just go to the DOS prompt and change to the directory of interest.  Then type the following at the DOS promt:  dir&gt; directory_files.txt.  This prints the output to a text file (directory_files.txt) in that directory.  It can be opened and edited, if need be, and then printed.  This works fine in Windows XP and is as simple as it gets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21757</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sat, 26 Dec 2009 19:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21757</guid>
		<description>@echo on 
   dir /s %1 /-p /o:gn &gt; &quot;%temp%\Listing&quot; 
   start /w notepad /p &quot;%temp%\Listing&quot; 
   exit


For subdir this works for me. Cheers</description>
		<content:encoded><![CDATA[<p>@echo on<br />
   dir /s %1 /-p /o:gn &gt; &#034;%temp%\Listing&#034;<br />
   start /w notepad /p &#034;%temp%\Listing&#034;<br />
   exit</p>
<p>For subdir this works for me. Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Watching The Net</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21101</link>
		<dc:creator>Watching The Net</dc:creator>
		<pubDate>Tue, 17 Nov 2009 12:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21101</guid>
		<description>@Phil

The file is created in your temporary directory, but the file is deleted after it is printed. The file name is Listing.

To see where your temp directory is located, at the command prompt type:

echo %TEMP%</description>
		<content:encoded><![CDATA[<p>@Phil</p>
<p>The file is created in your temporary directory, but the file is deleted after it is printed. The file name is Listing.</p>
<p>To see where your temp directory is located, at the command prompt type:</p>
<p>echo %TEMP%</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21098</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Mon, 16 Nov 2009 23:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-21098</guid>
		<description>Great post.  Where does it save the file to?</description>
		<content:encoded><![CDATA[<p>Great post.  Where does it save the file to?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20990</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20990</guid>
		<description>Is there a way it can be directed to print the sub-directories (using the dir /s) but only print the folders, not the files in each directory?</description>
		<content:encoded><![CDATA[<p>Is there a way it can be directed to print the sub-directories (using the dir /s) but only print the folders, not the files in each directory?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binaryman</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20527</link>
		<dc:creator>Binaryman</dc:creator>
		<pubDate>Thu, 08 Oct 2009 16:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20527</guid>
		<description>Here is good utility: Directory Report  http://www.file-utilities.com
It can print reports in Unicode so Alex&#039;s Greek files will appear correctly</description>
		<content:encoded><![CDATA[<p>Here is good utility: Directory Report  <a href="http://www.file-utilities.com" rel="nofollow">http://www.file-utilities.com</a><br />
It can print reports in Unicode so Alex&#039;s Greek files will appear correctly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam jean</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20216</link>
		<dc:creator>Adam jean</dc:creator>
		<pubDate>Wed, 16 Sep 2009 08:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20216</guid>
		<description>Quite good directory treeview tool called &lt;a href=&quot;http://www.print-directory.com&quot; rel=&quot;nofollow&quot;&gt;print directory&lt;/a&gt; not a freeware but affortable.</description>
		<content:encoded><![CDATA[<p>Quite good directory treeview tool called <a href="http://www.print-directory.com" rel="nofollow">print directory</a> not a freeware but affortable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Couch</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20138</link>
		<dc:creator>John Couch</dc:creator>
		<pubDate>Fri, 11 Sep 2009 20:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20138</guid>
		<description>Sorry...meant SINGLE&quot; line.</description>
		<content:encoded><![CDATA[<p>Sorry&#8230;meant SINGLE&#034; line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Couch</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20137</link>
		<dc:creator>John Couch</dc:creator>
		<pubDate>Fri, 11 Sep 2009 20:44:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20137</guid>
		<description>Just wanted to let you know that with your instructions, I now have a print directory command in Explorer!  One question though...how can you set up new page margins in that I have some long file names for comprehensive project that I am working on and would like for each of the file names to be on a continuous line.

TIA!
John</description>
		<content:encoded><![CDATA[<p>Just wanted to let you know that with your instructions, I now have a print directory command in Explorer!  One question though&#8230;how can you set up new page margins in that I have some long file names for comprehensive project that I am working on and would like for each of the file names to be on a continuous line.</p>
<p>TIA!<br />
John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20122</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 10 Sep 2009 22:48:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20122</guid>
		<description>Found here http://www.print-directory.com</description>
		<content:encoded><![CDATA[<p>Found here <a href="http://www.print-directory.com" rel="nofollow">http://www.print-directory.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20121</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 10 Sep 2009 22:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/how-to-print-a-directory-tree-from-windows-explorer.html#comment-20121</guid>
		<description>I use Print Directory to do this job easily...</description>
		<content:encoded><![CDATA[<p>I use Print Directory to do this job easily&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.293 seconds -->
