recycle-bin

C#/.NET: Retrieving the contents/file attributes from a file inside a recycle bin

Hi, I just wanna ask if there's a possibility to retrieve the contents of a 'dump' file from the recycle bin programatically. The contents that I'm looking for are file attributes like 'Date Last Modified, 'Data created', 'size', etc (without restoring the file itself to the original location to preserve the original attributes found wh...

How Can I get the recycleBin Path for each disk, for different operation System?

WinXP, Vista, Win7, there is a certain folder for recyclebin. How Can I get the recycleBin Path for each disk, for different operation System? in WinXP it is called XX:\RECYCLER, while in vista it used another name. Is there any windows C++ API for it ? Many thanks! ...

SQL Server 'Recycle Bin'

I'm building a Content Management website which will also include other features. When an admin member deletes an item through the admin panel, I would like this item to be moved to a 'recycle bin' for 30 days (then automatically deleted). What is the best way of implementing this feature? One idea I had was to have a 'Deleted' bit col...

Visual C# - Send a File to the Recycle Bin

Currently I'm using the following function file.Delete(); But how can I use this function to send a file to the recycle bin instead of just deleting it outright? ...

How can I move file into Recycle Bin / trash on different platforms using PyQt4?

I would like to add the next feature to my cross-platform PyQt4 application: when user selects some file and select "remove" action on it that file will be moved to Recycle Bin folder instead of being permantly removed. I think I can find Windows-specific solution using Win32 API or something similar, but I'd like to know does similar op...