<?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: The lowdown on the downloads -- how to stay organized?</title>
	<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized/</link>
	<description>Comments on Ask MetaFilter post The lowdown on the downloads -- how to stay organized?</description>
	<pubDate>Thu, 20 Sep 2007 10:15:14 -0800</pubDate>
	<lastBuildDate>Thu, 20 Sep 2007 10:15:14 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: The lowdown on the downloads -- how to stay organized?</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized</link>	
		<description>How to best organize and maintain my Downloads folder in OS X?  Automator tips? &lt;br /&gt;&lt;br /&gt; My Downloads folder currently has 96 items in it... I know I should just take the time to manually sort and delete/save it all, but I&apos;m curious how other people manage to organize their downloads.&lt;br&gt;
&lt;br&gt;
Are there any useful Automator tricks?  It would be handy for files older than a week or so to automatically be moved elsewhere, but as far as I can tell, OS X only recognizes a file&apos;s created-on date, not its saved-to-this-folder date.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2007:site.71995</guid>
		<pubDate>Thu, 20 Sep 2007 10:06:11 -0800</pubDate>
		<dc:creator>Robot Johnny</dc:creator>
		
			<category>osx</category>
		
			<category>mac</category>
		
			<category>automator</category>
		
			<category>downloads</category>
		
			<category>internet</category>
		
			<category>organization</category>
		
	</item> <item>
		<title>By: Armitage Shanks</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072331</link>	
		<description>&lt;i&gt;It would be handy for files older than a week or so to automatically be moved elsewhere,&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
I think &lt;a href=&quot;http://www.noodlesoft.com/hazel.php&quot;&gt;Hazel&lt;/a&gt; will do this for you.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072331</guid>
		<pubDate>Thu, 20 Sep 2007 10:15:14 -0800</pubDate>
		<dc:creator>Armitage Shanks</dc:creator>
	</item><item>
		<title>By: mkultra</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072336</link>	
		<description>I have an Applescript attached as a Folder Action script for my downloads folder:&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
on adding folder items to this_folder after receiving these_items&lt;br&gt;
	tell application &quot;Finder&quot;&lt;br&gt;
		repeat with this_item in these_items&lt;br&gt;
			try&lt;br&gt;
				set this_type to the kind of this_item as string&lt;br&gt;
				tell me&lt;br&gt;
					if (this_type is &quot;Folder&quot;) then&lt;br&gt;
						processFolder(this_item)&lt;br&gt;
					else&lt;br&gt;
						processFile(this_item)&lt;br&gt;
					end if&lt;br&gt;
				end tell&lt;br&gt;
			on error err&lt;br&gt;
				display dialog (err as string)&lt;br&gt;
			end try&lt;br&gt;
		end repeat&lt;br&gt;
	end tell&lt;br&gt;
end adding folder items to&lt;br&gt;
&lt;br&gt;
on processFolder(this_folder)&lt;br&gt;
	tell application &quot;Finder&quot;&lt;br&gt;
		set these_items to every item in this_folder&lt;br&gt;
		if the (count of these_items) is 1 then&lt;br&gt;
			repeat with this_item in these_items&lt;br&gt;
				try&lt;br&gt;
					set this_type to the kind of this_item as string&lt;br&gt;
					tell me&lt;br&gt;
						if (this_type is &quot;Folder&quot;) then&lt;br&gt;
							processFolder(this_item)&lt;br&gt;
						else&lt;br&gt;
							processFile(this_item)&lt;br&gt;
						end if&lt;br&gt;
					end tell&lt;br&gt;
				on error err&lt;br&gt;
					display dialog (err as string)&lt;br&gt;
				end try&lt;br&gt;
			end repeat&lt;br&gt;
		end if&lt;br&gt;
	end tell&lt;br&gt;
end processFolder&lt;br&gt;
&lt;br&gt;
on processFile(this_file)&lt;br&gt;
	set new_folder to (path to home folder as string) &amp;amp; &quot;Inbox:&quot;&lt;br&gt;
	tell application &quot;Finder&quot;&lt;br&gt;
		if (the name of this_file ends with &quot;dmg&quot; or the kind of this_file is &quot;Installer package&quot; or the kind of this_file is &quot;Application&quot;) then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Apps:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Apps:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		else if (the name of this_file ends with &quot;doc&quot; or the name of this_file ends with &quot;xls&quot; or the name of this_file ends with &quot;ppt&quot; or the name of this_file ends with &quot;pdf&quot;) then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Docs:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Docs:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		else if (the name of this_file ends with &quot;mp3&quot; or the name of this_file ends with &quot;aac&quot; or the name of this_file ends with &quot;m4a&quot; or the name of this_file ends with &quot;m3u&quot;) then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Music:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Music:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		else if (the name of this_file ends with &quot;avi&quot; or the name of this_file ends with &quot;mov&quot; or the name of this_file ends with &quot;mp4&quot; or the name of this_file ends with &quot;mpg&quot; or the name of this_file ends with &quot;mpeg&quot;) then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Movies:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Movies:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		else if (the name of this_file ends with &quot;jpg&quot; or the name of this_file ends with &quot;jpeg&quot; or the name of this_file ends with &quot;gif&quot; or the name of this_file ends with &quot;png&quot; or the name of this_file ends with &quot;bmp&quot;) then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Images:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Images:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		else if the name of this_file ends with &quot;html&quot; then&lt;br&gt;
			set new_file to new_folder &amp;amp; &quot;Web Pages:&quot; &amp;amp; the name of this_file&lt;br&gt;
			if not (exists new_file) then&lt;br&gt;
				move this_file to new_folder &amp;amp; &quot;Web Pages:&quot;&lt;br&gt;
			else&lt;br&gt;
				delete this_file&lt;br&gt;
			end if&lt;br&gt;
		end if&lt;br&gt;
	end tell&lt;br&gt;
end processFile&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
You&apos;ll need to adjust your folder structure accordingly, but that&apos;s the gist of it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072336</guid>
		<pubDate>Thu, 20 Sep 2007 10:17:13 -0800</pubDate>
		<dc:creator>mkultra</dc:creator>
	</item><item>
		<title>By: mkultra</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072337</link>	
		<description>Ugh, sorry about those extra line breaks.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072337</guid>
		<pubDate>Thu, 20 Sep 2007 10:17:47 -0800</pubDate>
		<dc:creator>mkultra</dc:creator>
	</item><item>
		<title>By: jjg</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072403</link>	
		<description>I have an AppleScript similar to mkultra&apos;s except without all the &lt;code&gt;else if&lt;/code&gt; statements; it just makes new folders for filetypes it hasn&apos;t seen before.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072403</guid>
		<pubDate>Thu, 20 Sep 2007 11:03:58 -0800</pubDate>
		<dc:creator>jjg</dc:creator>
	</item><item>
		<title>By: dyslexictraveler</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072525</link>	
		<description>Seconding &lt;a href=&quot;http://www.noodlesoft.com/hazel.php&quot;&gt;Hazel&lt;/a&gt;. It&apos;s a shareware preference pane add-in that let&apos;s you create rules to automatically keep your downloads folder (or any folder really) organized by criteria you set (e.g., date downloaded, file type, etc.) It really works pretty well.&lt;br&gt;
&lt;br&gt;
I just wish there was something as simple and elegant for Windows that I could use at work...</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072525</guid>
		<pubDate>Thu, 20 Sep 2007 12:25:05 -0800</pubDate>
		<dc:creator>dyslexictraveler</dc:creator>
	</item><item>
		<title>By: kindall</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072538</link>	
		<description>I advise having separate folders for the types of things you download and just downloading directly into there. For example, it is simplicity itself to use a different folder for Soulseek (only music) than for BitTorrent (almost always video). If you download from Usenet, use a client that can download to different folders based on the group you&apos;re in (Thoth does this, I&apos;m sure others do too).&lt;br&gt;
&lt;br&gt;
I do have a general downloads folder I use for things I download with a Web browser and other &quot;general&quot; apps, but if I download something that I want elsewhere, I move it immediately after I download it, or else just download it there in the first place by doing &quot;Save As&quot; or &quot;Download To&quot; in the browser&apos;s context menu. Otherwise, I don&apos;t bother to organize or clean this folder at all. I just keep it sorted by date so the most recent stuff is on top. It currently has 755 items in it. Once every year or so I&apos;ll view it by name and delete old versions of app disk images, but that&apos;s about it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072538</guid>
		<pubDate>Thu, 20 Sep 2007 12:36:48 -0800</pubDate>
		<dc:creator>kindall</dc:creator>
	</item><item>
		<title>By: Robot Johnny</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1072644</link>	
		<description>Thanks, everyone.  Hazel looks perfect.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1072644</guid>
		<pubDate>Thu, 20 Sep 2007 13:44:35 -0800</pubDate>
		<dc:creator>Robot Johnny</dc:creator>
	</item><item>
		<title>By: WCityMike</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1075472</link>	
		<description>I use the Perl script in the comment entitled &quot;10.4: Use PERL to keep the desktop clean&quot; on &lt;a href=&quot;http://www.macosxhints.com/article.php?story=20060130010025791&quot;&gt;this page&lt;/a&gt;, which may contain solutions of interest to you as well.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1075472</guid>
		<pubDate>Sun, 23 Sep 2007 15:51:10 -0800</pubDate>
		<dc:creator>WCityMike</dc:creator>
	</item><item>
		<title>By: kindall</title>
		<link>http://ask.metafilter.com/71995/The-lowdown-on-the-downloads-how-to-stay-organized#1079604</link>	
		<description>Don&apos;t know if anyone&apos;s still looking in here, but &lt;a href=&quot;http://www.mupromo.com/&quot;&gt;MacUpdate Promo&lt;/a&gt; has a nice special on Hazel today.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2007:site.71995-1079604</guid>
		<pubDate>Thu, 27 Sep 2007 09:18:22 -0800</pubDate>
		<dc:creator>kindall</dc:creator>
	</item>
	</channel>
</rss>
