Tagged Questions
The recycle-bin tag has no wiki summary.
16
votes
5answers
2k views
Is it possible with Java to delete to the Recycle Bin?
Java is the key here. I need to be able to delete files but users expect to be able to "undelete" from the recycle bin. As far as I can tell this isn't possible. Anyone know otherwise?
10
votes
4answers
296 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 ...
9
votes
2answers
1k views
How do I restore a file from the recycle bin using C#?
Moving files to the recycle bin and emptying the recycle bin are well documented, but how can a file be programmatically restored from the recycle bin?
7
votes
3answers
744 views
How can I tell that a directory is the recycle bin in C#?
Given a folder, how can I tell that it is a recycle bin? I've found an answer for C++ but not for C#.
My first idea was to check for FileAttributes.System (which would be an acceptable approximation ...
6
votes
5answers
1k views
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?
6
votes
1answer
356 views
What does ShFileOperation do when the recycle bin is full?
I use this procedure:
function MoveToRecycle(sFileName: widestring): Boolean;
var
fos: TSHFileOpStructW;
begin
FillChar(fos, SizeOf(fos), 0);
with fos do
begin
wnd := 0;
wFunc := ...
6
votes
3answers
2k views
How to Move files to the recycle bin
I need to Move a file to recycle bin in .net 2003
I added microsft.visualbasic.runtime dll from refrence, but i could not able to get filesystem.deletedirectory, So what to do..Can any one help me?
5
votes
4answers
866 views
How does Vista Recycle bin work?
I am trying to write a python module to move files to the 'Recycle Bin' on both Mac and PC.
Is there a way, only from the commandline (and yes, I mean using absloutly no C#/C++/etc) to move a file ...
4
votes
3answers
716 views
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 ...
4
votes
2answers
164 views
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' ...
4
votes
2answers
341 views
C#/.NET: Retrieving the contents/file attributes from a file inside a recycle bin
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 ...
2
votes
2answers
124 views
How to recycle file/folder from network share delete
I'm trying to code a program which will watch a directory/disk and move deleted files/folders to recycle bin when they are deleted from network shared folder.
I have this code which is working when a ...
2
votes
2answers
286 views
How to restore files from recycle bin [closed]
Possible Duplicate:
How do I restore a file from the recycle bin using C#?
Someone knows how to restore files from recycle bin using C# with the Windows API?.
2
votes
2answers
871 views
How to delete folder into recycle bin in C++
I am programing under C++, MFC, windows.
I want to delete a folder into recycle bin.
How can I do this?
CString filePath = directorytoBeDeletePath;
TCHAR ToBuf[MAX_PATH + 10];
TCHAR ...
2
votes
6answers
2k views
Finding the Recycle Bin on a local NTFS drive
I'm trying to write some simple code that will return the directory for the recycle bin on a local drive. Seems like it would be simple -- should be a thousand answers on Google. Haven't found one ...
2
votes
1answer
1k views
Listing files in recycle bin
Hi guys me again :)
I'm wanting to list the files that are in the recycle bin in Vista from the command line. So far I have this..
dir C:\$Recycle.Bin /s /b >> recyclebin.txt
That does ...
2
votes
4answers
605 views
How to detect the item restore on a ItemAdded() event on SharePoint
I know that when an item is restored from the recycle bin, the ItemAdded event is fired.
However, how can i detect if the item added comes from the recycle bin or if it is a new file.
Thanks
2
votes
2answers
927 views
How can I get the localized name of a 'special' windows folder (Recycle bin etc.)?
I'm trying to find out the 'correct' windows API for finding out the localized name of 'special' folders, specifically the Recycle Bin. I want to be able to prompt the user with a suitably localized ...
1
vote
1answer
58 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
98 views
How to send a file to trash in Linux and OSX using C# [closed]
Okay ... I'm a bit new to programming C# in general, and as a partly-for-practice partly-for-something-useful project, I'm developing a little image-viewer in C# (using Visual Studio 2010), and I want ...
1
vote
2answers
724 views
Deleting file to recycle bin on Windows x64 in C#
I've got this class which seems to work quite well on non-64bit.
using System;
using System.Runtime.InteropServices;
namespace DeleteToRecycleBin
{
/// <summary>
/// Send files directly to the ...
1
vote
2answers
247 views
How can I tell that a directory is the Recycling bin in VB6?
I am attempting to port the code in this article to VB6, but I'm experiencing crashing. I'm pretty sure my error is in my call to SHBindToParent (MSDN entry) since SHParseDisplayName is returning 0 ...
1
vote
3answers
355 views
Deleting a single item FROM recycle bin
is there anyway in C# (interop maybe) to delete a specific file in the recycle bin permanently?
While searching on the internet I only found ways to delete TO the recycle bin not FROM.
I also don't ...
1
vote
2answers
406 views
Vista Recycle Bin Maximum Size
Does anyone know how to set the Maximum Size of the Recycle Bin via script?
Whether its written in batch or vbs or just a reg file?
I've been exploring this idea for the last few days, and can't get ...
0
votes
1answer
77 views
hibernate restore deleted entities
Is there a third-party library which add restore deleted entities feature? i need something like Hibernate envers which creates entities and map them to tables at runtime, but a lot simpler! i just ...
0
votes
3answers
411 views
Delete file to recyclebin in csharp with VB's FileSystem.DeleteFile method not working properly
I've got a piece of code that calls the DeleteFile method in the Microsoft.VisualBasic.FileIO.FileSystem class (in the Microsoft.VisualBasic assembly) in order to send the file to the Recycle Bin ...
0
votes
1answer
155 views
SHEmptyRecycleBin in VB6 doesn't do anything
I'm trying to empty the recycle bin as part of a process that is freeing up hard disk space. He is the code I've got so far. At the top of my class:
Private Declare Function SHEmptyRecycleBin Lib ...
0
votes
2answers
282 views
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 ...
0
votes
3answers
82 views
How to delete to recycle bin in FinalBuilder
I'm finding that deleting a folder containing many files and subfolders in FinalBuilder is very slow. An an alternative, I could delete the folder to the recycle bin.
Anyone have any suggestions how ...
0
votes
1answer
421 views
Add an entry to recycle bin right click menu using C#
I'm looking for a C# code to add my own entry to recycle bin right click menu.
I've already seen this. What should i do to represent recycle bin.(Sample is provided for jpeg files)
0
votes
3answers
3k views
How can I empty the recycle bin for all users from a Windows service application in c#
I'm looking for a c# snippet which I can insert in a Windows service. The code must empty the recycle bin for all users on the computer.
I have previously tried using SHEmptyRecycleBin (ref ...
-3
votes
2answers
666 views
How can I tell that a directory is really a recycle bin?
I need a function that, given a path, tells me whether it is a Recycle Bin folder. I tried using functions like SHGetSpecialFolderPath with CSIDL_BITBUCKET, but that doesn't work because the Recycle ...