<?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: Find and delete hidden files on Mac</title>
	<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac/</link>
	<description>Comments on Ask MetaFilter post Find and delete hidden files on Mac</description>
	<pubDate>Thu, 23 Oct 2008 13:22:43 -0800</pubDate>
	<lastBuildDate>Thu, 23 Oct 2008 13:22:43 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Find and delete hidden files on Mac</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac</link>	
		<description>Help me find and delete hidden files on my Mac!   &lt;br /&gt;&lt;br /&gt; I&apos;ve been using the program Graphics Converter to try to make a large .MOV slideshow out of 1500 JPEG images.  It keeps crashing because it runs out of disc space (I think that&apos;s why anyway), and then I end up with even less hard drive space available...it&apos;s leaving hidden temporary files behind.  I&apos;ve narrowed them down to somewhere in my System folder...about 13 gigs worth, but I can&apos;t actually see them.  How do I locate them and clean them out?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.105019</guid>
		<pubDate>Thu, 23 Oct 2008 13:12:33 -0800</pubDate>
		<dc:creator>wavejumper</dc:creator>
		
			<category>Find</category>
		
			<category>delete</category>
		
			<category>hidden</category>
		
			<category>files</category>
		
			<category>Mac</category>
		
			<category>hunt</category>
		
	</item> <item>
		<title>By: jaimev</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1517868</link>	
		<description>You can try a disk inventory program like &lt;a href=&quot;&quot;&gt;this&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1517868</guid>
		<pubDate>Thu, 23 Oct 2008 13:22:43 -0800</pubDate>
		<dc:creator>jaimev</dc:creator>
	</item><item>
		<title>By: cjorgensen</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1517869</link>	
		<description>&lt;a href=&quot;http://www.versiontracker.com/dyn/moreinfo/macosx/44018&quot;&gt;WhatSize&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1517869</guid>
		<pubDate>Thu, 23 Oct 2008 13:22:51 -0800</pubDate>
		<dc:creator>cjorgensen</dc:creator>
	</item><item>
		<title>By: jaimev</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1517870</link>	
		<description>Sorry about that...like *&lt;a href=&quot;http://www.derlien.com/&quot;&gt;this&lt;/a&gt;*</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1517870</guid>
		<pubDate>Thu, 23 Oct 2008 13:23:14 -0800</pubDate>
		<dc:creator>jaimev</dc:creator>
	</item><item>
		<title>By: emptyinside</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1517873</link>	
		<description>I&apos;ve always liked &lt;a href=&quot;http://grandperspectiv.sourceforge.net/&quot;&gt;GrandPersepective&lt;/a&gt; for tracking down hard drive clogs.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1517873</guid>
		<pubDate>Thu, 23 Oct 2008 13:24:56 -0800</pubDate>
		<dc:creator>emptyinside</dc:creator>
	</item><item>
		<title>By: mkb</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1517875</link>	
		<description>For future reference, &lt;a href=&quot;http://grandperspectiv.sourceforge.net/&quot;&gt;GrandPerspective&lt;/a&gt; makes this much easier.&lt;br&gt;
&lt;br&gt;
To see everything in a particular directory, I like to use the Terminal instead of the Finder. &lt;code&gt;ls -alh&lt;/code&gt; will show everything in a directory with human-readable sizes.&lt;br&gt;
&lt;br&gt;
Otherwise, you can follow &lt;a href=&quot;http://forums.macosxhints.com/showthread.php?t=80720&quot;&gt;these hints&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1517875</guid>
		<pubDate>Thu, 23 Oct 2008 13:26:03 -0800</pubDate>
		<dc:creator>mkb</dc:creator>
	</item><item>
		<title>By: ayerarcturus</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1518002</link>	
		<description>If you&apos;re not afraid of using the terminal, the &apos;find&apos; command should be available on your system.  Try:&lt;br&gt;
&lt;br&gt;
find /path/to/search -name &apos;.*&apos; -type d -print&lt;br&gt;
&lt;br&gt;
And you&apos;ll get a list of hidden files. If you&apos;re 100% certain that every hidden file listed can be deleted, you can run:&lt;br&gt;
&lt;br&gt;
find /path/to/search -name &apos;.*&apos; -type d -delete&lt;br&gt;
&lt;br&gt;
However, you might want to be careful with that last command. (:</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1518002</guid>
		<pubDate>Thu, 23 Oct 2008 15:13:24 -0800</pubDate>
		<dc:creator>ayerarcturus</dc:creator>
	</item><item>
		<title>By: sararah</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1518018</link>	
		<description>I just have my hidden files constantly showing because I have often needed to access the some hidden file to run a weird unix program. Anyways &lt;a href=&quot;http://www.mactricksandtips.com/2008/04/show-hidden-files.html&quot;&gt;here&apos;s how to see your hidden files&lt;/a&gt;, after you do this they should show up in Finder (mine do). To make them go away obviously do the same command in Terminal with FALSE.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1518018</guid>
		<pubDate>Thu, 23 Oct 2008 15:27:31 -0800</pubDate>
		<dc:creator>sararah</dc:creator>
	</item><item>
		<title>By: harmfulray</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1518036</link>	
		<description>Issuing a command such as &lt;br&gt;
&lt;br&gt;
&lt;code&gt;find /System -type f -size +1000000c -ls | sort -n -k7&lt;/code&gt; &lt;br&gt;
&lt;br&gt;
in the terminal will find all regular files at least 1,000,000 bytes long and display them in increasing order of size.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1518036</guid>
		<pubDate>Thu, 23 Oct 2008 15:46:03 -0800</pubDate>
		<dc:creator>harmfulray</dc:creator>
	</item><item>
		<title>By: KimG</title>
		<link>http://ask.metafilter.com/105019/Find-and-delete-hidden-files-on-Mac#1518075</link>	
		<description>for this kind of exercise, I usually also use this snippet in the terminal. I have extended it by Harmfulray&apos;s nice sort. (copy and paste if you like, you will need to give your password, but that is only to find the really hidden files you normally don&apos;t see): &lt;br&gt;
&lt;br&gt;
sudo find / -size +200000 -ls| sort -n -k7 -r|head -20&lt;br&gt;
&lt;br&gt;
It gives you the 20 largest files on your computer that are larger than 100 MB sorted by the largest first.&lt;br&gt;
&lt;br&gt;
Harmfulray-&amp;gt; any reason only to search /System and not / ? Just a cut/paste-error I guess. Nice sort, though!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.105019-1518075</guid>
		<pubDate>Thu, 23 Oct 2008 16:26:38 -0800</pubDate>
		<dc:creator>KimG</dc:creator>
	</item>
	</channel>
</rss>
