I was wondering if there is a way to programmatically empty the contents of the trash bin. I'm currently deleting files that are located there using:

    NSFileManager *manager = [NSFileManager defaultManager];
    [manager removeItemAtPath:fileToDelete error:nil];

However, after I use this operation, every time I drag a file to the trash, I am prompted with the message:

Are you sure you want to delete “xxxxxx.xxx”?This item will be deleted immediately. You can’t undo this action.

This lasts until I either log out or sudo rm -rf the trash bin.

Thanks!

link|improve this question

Why do you need to do this? The Trash is the user's realm and your app shouldn't really be messing with it. – Rob Keniger Mar 17 '11 at 11:15
feedback

2 Answers

You could try using AppleScript to do it:

NSString* appleScriptString = @"tell application \"Finder\"\n"
                              @"if length of (items in the trash as string) is 0 then return\n"
                              @"empty trash\n"
                              @"repeat until (count items of trash) = 0\n"
                              @"delay 1\n"
                              @"end repeat\n"
                              @"end tell";
NSAppleScript* emptyTrashScript = [[NSAppleScript alloc] initWithSource:appleScriptString];

[emptyTrashScript executeAndReturnError:nil];
[emptyTrashScript release];
link|improve this answer
thanks! is there a way to do this one file at a time? i'm deleting files individually in a callback method, and am performing checks on each one, deleting it, and then moving on to the next. – minimalpop Mar 17 '11 at 3:26
Are they already in the trash? You can't empty the trash one file at a time. However, you could probably do your checks, delete the files, and then empty the trash after you're done processing. Alternatively, you could loop over the files in the trash and move the ones you don't want to delete out of the trash, but that's a little counterproductive. – Johnny Grass Mar 17 '11 at 4:15
feedback

You can put stuff in the trash with NSWorkspace, however deleting the trash is kind of a no no for programs so you aren't going to find an API. So your best bet is using the ScriptBridge.

FinderApplication *finder = [SBApplication applicationWithBundleIdentifier:@"com.apple.Finder"];
[finder empty];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.