I am tying to get the content of the trash in a Cocoa application and I was wondering if this is a special path or if I have to use dedicated functions.

Thanks for your help,

Regards,

link|improve this question

52% accept rate
feedback

2 Answers

up vote 1 down vote accepted

"Macintosh HD>Users>your username>.Trash" It is hidden to finder but you can locate it in the terminal or otherwise. From then on it is a normal folder and you can do whatever functions you would like to it. Could be done like such

NSError *error=nil;
NSString *path=[NSHomeDirectory() stringByAppendingPathComponent:@".Trash"];
NSArray *folderList=[[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:&error];
link|improve this answer
2  
Don't hard-code the path like that. Use [NSHomeDirectory() stringByAppendingPathComponent:@".Trash"] – sudo rm -rf May 9 '11 at 17:06
thanks for this interesng comment. I've learn a new function :) – AP. May 9 '11 at 18:20
feedback

There are several special paths for trash items.

  • Each user has a .Trash directory in their home directly.
  • Each mounted volume has a .Trashes directory in its root with a subdirectory for each user. This is so that trash items on removable drives like USB keys stay on the drive.

The above are implementation details (that have stayed constant since 10.0) so I'm not sure if it is possible to rely on them. An alternative to going to the directories is to use the scripting bridge to Finder. There's an example in the Scripting Bridge programming guide.

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.