using System;
using System.IO;
namespace SendToTrash
{
class Program
{
static void Main(string[] args)
{
// Путь к файлу/папке
string path = @"C:\example\path\to\file\or\foleder";
string recyclePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Microsoft\\Windows\\Recycle Bin\\");
// Копируем файл/папку в корзину
string destination = Path.Combine(recyclePath, Path.GetFileName(path));
File.Copy(path, destination, true);
}
}
}