How do you place a file in recycle bin instead of delete? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:22:34Zhttp://stackoverflow.com/feeds/question/17612http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/17612/how-do-you-place-a-file-in-recycle-bin-instead-of-delete7How do you place a file in recycle bin instead of delete?Brian Leahy2008-08-20T08:43:00Z2008-08-22T07:00:22Z
<p>Programmatic solution of course...</p>
<p>Man i wish i could choose both the VB and Unmanaged as an answer ;)</p>
<p>Thanks for both.</p>
http://stackoverflow.com/questions/17612/how-do-you-place-a-file-in-recycle-bin-instead-of-delete/17618#176187Answer by Ishmaeel for How do you place a file in recycle bin instead of delete?Ishmaeel2008-08-20T08:47:04Z2008-08-20T08:57:26Z<p>You need to delve into unmanaged code. Here's a static class that I've been using:</p>
<pre><code>public static class Recycle
{
private const int FO_DELETE = 3;
private const int FOF_ALLOWUNDO = 0x40;
private const int FOF_NOCONFIRMATION = 0x0010;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto, Pack = 1)]
public struct SHFILEOPSTRUCT
{
public IntPtr hwnd;
[MarshalAs(UnmanagedType.U4)]
public int wFunc;
public string pFrom;
public string pTo;
public short fFlags;
[MarshalAs(UnmanagedType.Bool)]
public bool fAnyOperationsAborted;
public IntPtr hNameMappings;
public string lpszProgressTitle;
}
[DllImport("shell32.dll", CharSet = CharSet.Auto)]
static extern int SHFileOperation(ref SHFILEOPSTRUCT FileOp);
public static void DeleteFileOperation(string filePath)
{
SHFILEOPSTRUCT fileop = new SHFILEOPSTRUCT();
fileop.wFunc = FO_DELETE;
fileop.pFrom = filePath + '\0' + '\0';
fileop.fFlags = FOF_ALLOWUNDO | FOF_NOCONFIRMATION;
SHFileOperation(ref fileop);
}
}
</code></pre>
<p>Addendum:</p>
<ul>
<li>Tsk tsk @ Jeff for "using Microsoft.VisualBasic" in C# code.</li>
<li>Tsk tsk @ MS for putting all the goodies in VisualBasic namespace.</li>
</ul>
http://stackoverflow.com/questions/17612/how-do-you-place-a-file-in-recycle-bin-instead-of-delete/17620#1762011Answer by TK for How do you place a file in recycle bin instead of delete?TK2008-08-20T08:48:07Z2008-08-20T08:51:00Z<p><a href="http://www.daveamenta.com/2008-05/c-delete-a-file-to-the-recycle-bin/" rel="nofollow">http://www.daveamenta.com/2008-05/c-delete-a-file-to-the-recycle-bin/</a></p>
<p>From above:</p>
<pre><code>using Microsoft.VisualBasic;
string path = @"c:\myfile.txt";
FileIO.FileSystem.DeleteDirectory(path,
FileIO.UIOption.OnlyErrorDialogs,
RecycleOption.SendToRecycleBin);
</code></pre>
http://stackoverflow.com/questions/17612/how-do-you-place-a-file-in-recycle-bin-instead-of-delete/17623#176236Answer by Zooba for How do you place a file in recycle bin instead of delete?Zooba2008-08-20T08:50:47Z2008-08-22T07:00:22Z<p>The best way I have found is to use the VB function <code>FileSystem.DeleteFile</code>.</p>
<pre><code>Microsoft.VisualBasic.FileIO.FileSystem.DeleteFile(file.FullName,
Microsoft.VisualBasic.FileIO.UIOption.OnlyErrorDialogs,
Microsoft.VisualBasic.FileIO.RecycleOption.SendToRecycleBin);
</code></pre>
<p>It requires adding <code>Microsoft.VisualBasic</code> as a reference, but this is part of the .NET framework and so isn't an extra dependency.</p>
<p>Alternate solutions require a P/Invoke to <a href="http://msdn.microsoft.com/en-us/library/bb762164.aspx" rel="nofollow" title="SHFileOperation">SHFileOperation</a>, as well as defining all the various structures/constants. Including <code>Microsoft.VisualBasic</code> is much neater by comparison.</p>
http://stackoverflow.com/questions/17612/how-do-you-place-a-file-in-recycle-bin-instead-of-delete/17673#176737Answer by KiwiBastard for How do you place a file in recycle bin instead of delete?KiwiBastard2008-08-20T09:38:36Z2008-08-20T09:38:36Z<p>@Ishmaeel: you consider it worse to use the Microsoft.VisualBasic namespace (that as @Zoomba suggested is a standard library anyway) than using P/Invoke to unmanaged code?</p>
<p>I know (some) C# guys don't like VB, but that is a little obsessive?</p>