Calgarypuck Forums - The Unofficial Calgary Flames Fan Community

Go Back   Calgarypuck Forums - The Unofficial Calgary Flames Fan Community > Main Forums > The Off Topic Forum > Tech Talk
Register Forum Rules FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread
Old 11-01-2009, 12:36 PM   #1
Jayems
Franchise Player
 
Join Date: Aug 2005
Location: Calgary
Exp:
Default Mac help -- Quickly delete unwanted files

So here's my issue. I have 100s of folders that contain 1000s of image files. I need to clear up the non-keeper files. What I need to do, is have the file highlighted, and delete the file and move on to the next one. So I can look at the view box, see quickly if i should keep it or not, and move on. If I don't want it, a quick press of a button deletes it and I move on.

I know you can right-click and press delete, or even hold down the command key and press backspace to do it even quicker.

My issue with the cmd+backspace is that while it does EXACTLY what I need it to do, it does not highlight the next file once i delete the other file, instead, it drops back to the containing folder. Basically, this renders it useless as I have to individually click back on the next file and then delete it.

My other way is highlighting the file a separate colour and then just mass deleting the files that way, but that's identical to just right click and delete anyways.

Also, if anyone knows a short cut to highlighting the files a colour, that'd be extra handy too.

Last edited by Jayems; 11-01-2009 at 12:40 PM.
Jayems is offline   Reply With Quote
Old 11-01-2009, 03:55 PM   #2
sclitheroe
#1 Goaltender
 
Join Date: Sep 2005
Exp:
Default

Quote:
Originally Posted by Jayems View Post
So here's my issue. I have 100s of folders that contain 1000s of image files. I need to clear up the non-keeper files. What I need to do, is have the file highlighted, and delete the file and move on to the next one. So I can look at the view box, see quickly if i should keep it or not, and move on. If I don't want it, a quick press of a button deletes it and I move on.

I know you can right-click and press delete, or even hold down the command key and press backspace to do it even quicker.

My issue with the cmd+backspace is that while it does EXACTLY what I need it to do, it does not highlight the next file once i delete the other file, instead, it drops back to the containing folder. Basically, this renders it useless as I have to individually click back on the next file and then delete it.

My other way is highlighting the file a separate colour and then just mass deleting the files that way, but that's identical to just right click and delete anyways.

Also, if anyone knows a short cut to highlighting the files a colour, that'd be extra handy too.
Could you maybe reverse your workflow - use say coverflow mode to quickly flip through the list, and drag the picture of the files you want to keep (the coverflow preview), and drop them into a folder?
__________________
-Scott
sclitheroe is offline   Reply With Quote
Old 11-01-2009, 03:58 PM   #3
FanIn80
GOAT!
 
FanIn80's Avatar
 
Join Date: Jun 2006
Exp:
Default

Here's a script for applying a label to a Finder item:

Code:
tell application "Finder"
	set thisItem to selection as alias
	set the label index of thisItem to 2
end tell
Just open up Script Editor and then paste this into an empty script. Save the script in your Scripts folder (~/Library/Scripts).

After that is done, go to http://www.red-sweater.com/fastscripts/ and download and install FastScripts (you don't need to license it unless you plan on making more than 10 shortcuts).

Go into the preferences in FastScripts and switch to the Script Shortcuts tab. Drill down under the /Users... (etc) section until you see the script. Double-click on the shortcut part and assign a keyboard shortcut.

You should now be able to select an item in Finder, hit that keyboard shortcut and then have the item highlight red. Couple that with either Tile View or use QuickLook and you should be fine from there.


Edit: Btw, the color chart is:

Code:
No color = 0
Orange = 1
Red = 2
Yellow = 3
Blue = 4
Purple = 5
Green = 6
Grey = 7
You just have to change the number in the script to the number of the color you want. You can then make seven different scripts with keyboard shortcuts if you wanted to.

Also, there might be better apps for assigning keyboard shortcuts to AppleScripts... I just did a quick Google search to find the one I mentioned here. Actually, I think Snow Leopard has the ability to assign shortcuts to scripts now that I think about it...

Last edited by FanIn80; 11-01-2009 at 04:11 PM.
FanIn80 is offline   Reply With Quote
The Following User Says Thank You to FanIn80 For This Useful Post:
Old 11-01-2009, 05:25 PM   #4
Hack&Lube
Atomic Nerd
 
Join Date: Jul 2004
Location: Calgary
Exp:
Default

Wow that's really annoying sounding, can't you just do a thumbnail view like in windows where you can just see thumbnails of every single file right in the folder?
Hack&Lube is offline   Reply With Quote
Old 11-01-2009, 05:39 PM   #5
FanIn80
GOAT!
 
FanIn80's Avatar
 
Join Date: Jun 2006
Exp:
Default

Quote:
Originally Posted by Hack&Lube View Post
Wow that's really annoying sounding, can't you just do a thumbnail view like in windows where you can just see thumbnails of every single file right in the folder?
Of course you can. In fact, you can even flip through pages in a document, or watch a movie, or play an audio file, or whatever else... all from those same thumbnails.

That's not what he's asking for though.

Last edited by FanIn80; 11-01-2009 at 05:51 PM.
FanIn80 is offline   Reply With Quote
Old 11-01-2009, 05:44 PM   #6
FanIn80
GOAT!
 
FanIn80's Avatar
 
Join Date: Jun 2006
Exp:
Default

Quote:
Originally Posted by sclitheroe View Post
Could you maybe reverse your workflow - use say coverflow mode to quickly flip through the list, and drag the picture of the files you want to keep (the coverflow preview), and drop them into a folder?
I didn't even see this...

That's a good idea, or he can leave the workflow as is and just drag the item from coverflow to the trash can.

Edit: Actually, cmd+delete works fine for me in CoverFlow (in other words it highlights the next item in the list).

Last edited by FanIn80; 11-01-2009 at 05:47 PM.
FanIn80 is offline   Reply With Quote
Old 11-01-2009, 10:04 PM   #7
Jayems
Franchise Player
 
Join Date: Aug 2005
Location: Calgary
Exp:
Default

Quote:
Originally Posted by FanIn80 View Post

Edit: Actually, cmd+delete works fine for me in CoverFlow (in other words it highlights the next item in the list).
Yep. Not sure why I didn't try in coverflow (which is what i use 90% of the time when editing pics). I had it in column view and tried the list view, but not cover for whatever reason. Works exactly how i need it to.

Now, to try this script thingy.

Thanks for the help, everyone.

I bet I can clear up nearly 500-700gb of unnecessary space waste, it's just going to take me a year to go through them all. lol. but at least this will cut that time 1000x.

Last edited by Jayems; 11-01-2009 at 10:11 PM.
Jayems is offline   Reply With Quote
Old 11-02-2009, 07:55 AM   #8
sclitheroe
#1 Goaltender
 
Join Date: Sep 2005
Exp:
Default

Quote:
Originally Posted by Jayems View Post
Yep. Not sure why I didn't try in coverflow (which is what i use 90% of the time when editing pics). I had it in column view and tried the list view, but not cover for whatever reason. Works exactly how i need it to.

Now, to try this script thingy.

Thanks for the help, everyone.

I bet I can clear up nearly 500-700gb of unnecessary space waste, it's just going to take me a year to go through them all. lol. but at least this will cut that time 1000x.
Do you think it might be time to look at a heavier duty photo management app like Lightroom or Aperture? I think Lightroom in particular is fairly well regarded for doing photo library management. I'm pretty sure a trial version is available as well from Adobe.
__________________
-Scott
sclitheroe is offline   Reply With Quote
Old 11-03-2009, 10:29 PM   #9
Russic
Dances with Wolves
 
Russic's Avatar
 
Join Date: Jun 2006
Location: Section 304
Exp:
Default

Quote:
Originally Posted by sclitheroe View Post
Do you think it might be time to look at a heavier duty photo management app like Lightroom or Aperture? I think Lightroom in particular is fairly well regarded for doing photo library management. I'm pretty sure a trial version is available as well from Adobe.
Listen to this man. Lightroom could help you greatly I think. You could look at all your photos and just apply a flag to each one that sucks and then when it's all done delete all the flagged photos. You can even set it up to auto advance to the next photo after a keystroke so you're just hitting one key over and over instead of clicking on each file individually.
Russic is offline   Reply With Quote
The Following User Says Thank You to Russic For This Useful Post:
Old 11-03-2009, 10:33 PM   #10
Jayems
Franchise Player
 
Join Date: Aug 2005
Location: Calgary
Exp:
Default

I have lightroom at home but not at work. I've actually never used it for photo management, however. ONly used it for adjusting and some post processing. Bridge is handy, it's what i've always used for photo management.

Last edited by Jayems; 11-03-2009 at 10:40 PM.
Jayems is offline   Reply With Quote
Old 11-04-2009, 07:41 AM   #11
FanIn80
GOAT!
 
FanIn80's Avatar
 
Join Date: Jun 2006
Exp:
Default

+1 for Bridge.
FanIn80 is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 05:13 PM.

Calgary Flames
2024-25




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright Calgarypuck 2021 | See Our Privacy Policy