<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: windows file manager for folders with hundreds of millions of files</title>
	<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files/</link>
	<description>Comments on Ask MetaFilter post windows file manager for folders with hundreds of millions of files</description>
	<pubDate>Thu, 11 Jan 2007 09:06:08 -0800</pubDate>
	<lastBuildDate>Thu, 11 Jan 2007 09:06:08 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: windows file manager for folders with hundreds of millions of files</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files</link>	
		<description>Can anyone recommend a file manager for windows that can handle directories with hundreds of millions of folders/files?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2007:site.54821</guid>
		<pubDate>Thu, 11 Jan 2007 06:41:49 -0800</pubDate>
		<dc:creator>yeoz</dc:creator>
		
			<category>windows</category>
		
			<category>file</category>
		
			<category>manager</category>
		
	</item> <item>
		<title>By: aubilenon</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#825705</link>	
		<description>I would expect that EVERYTHING you could do with that would be slow.  To get an idea of the maximum speed it could possibly be to load the directory contents, from a cmd prompt (Windows -&amp;gt; Run -&amp;gt; cmd.exe) type &quot;dir /b full_path_to_directory   &amp;gt; NUL&quot;&lt;br&gt;
&lt;br&gt;
I think that scripts and commandline tools are going to be the way to go here.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-825705</guid>
		<pubDate>Thu, 11 Jan 2007 09:06:08 -0800</pubDate>
		<dc:creator>aubilenon</dc:creator>
	</item><item>
		<title>By: chrchr</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#825709</link>	
		<description>Another thing to consider is that the filesystem itself probably performs poorly when you have millions of files in a directory.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-825709</guid>
		<pubDate>Thu, 11 Jan 2007 09:07:45 -0800</pubDate>
		<dc:creator>chrchr</dc:creator>
	</item><item>
		<title>By: chairface</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#825844</link>	
		<description>Scripts are the way to go. Most interactive tools (including dir) will attempt to sort the directory before listing it, and that kinda screws you right there. The &quot;/b&quot; in aubilenon&apos;s post prevents the sorting so it&apos;s a good starting benchmark. GUI interactive tools might be even worse as lots of them like to animate actions which can make any action too slow to be practical.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-825844</guid>
		<pubDate>Thu, 11 Jan 2007 10:54:43 -0800</pubDate>
		<dc:creator>chairface</dc:creator>
	</item><item>
		<title>By: chundo</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#825956</link>	
		<description>I doubt you&apos;ll find anything that can deal with it efficiently.  Like aubilenon said, if you want any utility out of it (i.e. sorting), the sorting is generally done on the application side, which means sorting hundreds of millions of records AND keeping them in memory so it knows what to display next when you scroll.  So any solution will be (a) an enormous memory hog and (b) slow to start up.&lt;br&gt;
&lt;br&gt;
Please don&apos;t tell my why you want to do this, my head hurts already.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-825956</guid>
		<pubDate>Thu, 11 Jan 2007 12:34:15 -0800</pubDate>
		<dc:creator>chundo</dc:creator>
	</item><item>
		<title>By: moochoo</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#826021</link>	
		<description>as a side note i had a folder with 1200 images in it everytime an app wrote to that folder my computer hung for a good couple fo seconds.&lt;br&gt;
&lt;br&gt;
so i would hate to have to work in a folder that big!!&lt;br&gt;
&lt;br&gt;
maybe booting the drive in a linux machine could be a solution?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-826021</guid>
		<pubDate>Thu, 11 Jan 2007 13:13:22 -0800</pubDate>
		<dc:creator>moochoo</dc:creator>
	</item><item>
		<title>By: scottnic</title>
		<link>http://ask.metafilter.com/54821/windows-file-manager-for-folders-with-hundreds-of-millions-of-files#826182</link>	
		<description>I had some folders with tens of thousands of image files (nowhere near hundreds of millions, but they did slow Windows Explorer noticeably).&lt;br&gt;
&lt;br&gt;
I was frustrated enough with the slowness that I wrote a little command-line program to split the files into subdirectories of &lt;x&gt; files each (where &lt;x&gt; is a command-line option).&lt;br&gt;
&lt;br&gt;
It doesn&apos;t pay any attention to folders, so it may not do what you need it to do, but I&apos;d be happy to send it to you (with the usual disclaimers -- it was written in a half-hour and I can&apos;t guarantee it won&apos;t cause problems).&lt;br&gt;
&lt;br&gt;
If you&apos;re interested, email scott(AT)&lt;my username&gt;{DOT}com and I can send it to you.&lt;br&gt;
&lt;br&gt;
It does read a list of all files in the target directory first, so there may be memory issues if you truly have hundreds of millions of files...&lt;/x&gt;&lt;/x&gt;&lt;/my&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.54821-826182</guid>
		<pubDate>Thu, 11 Jan 2007 15:40:57 -0800</pubDate>
		<dc:creator>scottnic</dc:creator>
	</item>
	</channel>
</rss>
