Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
314 views

Moving files to Trash Can in Linux using C++

I'm trying to move (delete) a file to a Trash Can (in Linux) using C++ (also using QT4 for GUI). Unfortunately it seems to be quite difficult to do so and as far as I can tell there isn't a unified ...
4
votes
1answer
546 views

iPhone trash can suck animation

I am trying to use the trash can animation in an iPhone application I am building. I know the feature I need help with is a private API but the app will be in-house. According to the iPhoneDevWiki ...
3
votes
4answers
202 views

Get the full size icons of the Trash can

I am trying to display the icons of the Trash can in my app, both empty and full. I've tried several methods to get the icons, but each time the size is 32x32. Do you know a way to get a full size ...
3
votes
3answers
177 views

How can my Cocoa app be notified when the user empties the trash?

My app puts some files in the trash, but also implements undo to pull them back out again. I need to know if the user empties the trash so I can empty my undo stack. Do I need to monitor file system ...
3
votes
3answers
623 views

CakePHP 1.3 alternative to SoftDeletable Behavior?

Does anyone know of an alternative to the SoftDeletable Behavior that is compatible with Cake 1.3.x? If there aren't any ready behaviors available, any suggestions on how I go about doing this in the ...
3
votes
1answer
45 views

Unable to migrate mails to “Trash”

I am migrating some mails to 'TRASH' in Google Apps. Using Google API Ver 2: Code Sample : MailItemEntry[] entries = new MailItemEntry[1]; entries[0] = new MailItemEntry(); ...
2
votes
2answers
215 views

Empty Trash Bin via Objective-C/Cocoa

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 ...
1
vote
1answer
72 views

Java Trash/Recycle Bin Access

I'm writing a desktop application that requires access to the Recycle Bin on Windows and Trash on OSX. For whatever reason it looks like Java doesn't natively support this. I'm wondering if someone is ...
1
vote
1answer
519 views

How can I dynamically switch a UIBarButtonItem from a trash icon button and a 'Done' button?

I've got a UIToolbar with a button that I'd like to use for toggling Edit mode to enable deleting rows in my UITableView. I've got everything working perfectly if I settle for just changing the title ...
1
vote
2answers
195 views

How to move a symlink to the trash?

I don't see any options for the FSPathMoveObjectToTrashSync() function for not following links. Here is what I have tried Create a link and a file [ 21:32:41 /tmp ] $ touch my_file [ 21:32:45 /tmp ...
0
votes
1answer
43 views

Trash implementation in rails app

In my app I'm trying to implement trash for some objects, i.e. there will be column "trashed" and it'll set to date, when the object was trashed. Trash also has an index page, where users can restore ...
0
votes
1answer
488 views

How to implement delete animation like iPhone's photo app

I have a button of UIBarButtonSystemItemTrash on my Navigation Bar, I want to implement a animation when I clicked that button, with trash open and view flies into the trash. Just like iPhone's Photo ...
0
votes
2answers
97 views

how to list the content of the trash using objective-c (in a mac)

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,
0
votes
5answers
194 views

How to send email with php without the mail landing automaticly in the trash box

Im using PHP's mail() function to send some emails. But all my mails land automaticly in the trash box. Is there a way of preventing this? If so, where should i read to learn more about it. Would you ...