Put to recycle bin
In this chapter you will learn:
Delete to send a file to the recycle bin
using System.IO;//from ja v a 2 s . c o m
using System.Collections.Generic;
using System.Windows.Forms;
using System.Text.RegularExpressions;
public class Utils
{
public static void SendFileToRecycleBin(string sFile)
{
Microsoft.VisualBasic.FileIO.FileSystem.DeleteFile(
sFile,
Microsoft.VisualBasic.FileIO.UIOption.OnlyErrorDialogs,
Microsoft.VisualBasic.FileIO.RecycleOption.SendToRecycleBin);
}
}
Next chapter...
What you will learn in the next chapter:
Home » C# Tutorial » File, Path