Yazı Font Küçült Yazı Font Büyült

Çöp Kutusundaki Nesneleri Silmek  

Bu örnekte Çöp kutusundaki nesneleri silme işlemini gerçekleştireceğiz. Şekil 1 i inceleyin.

Resim1

Şekil 1


Formumuza ilk önce;
using System.Runtime.InteropServices;
ekleyeceğiz.
Daha sonra Shell32.dll Library dosyasını çağıracağız.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        enum RecycleFlags : uint
        {
            SHERB_NOCONFIRMATION = 0x00000001,
            SHERB_NOPROGRESSUI = 0x00000002,
            SHERB_NOSOUND = 0x00000004
        }

        [DllImport("Shell32.dll", CharSet = CharSet.Unicode)]
        static extern uint SHEmptyRecycleBin
            (IntPtr hwnd,
            string pszRootPath,
            RecycleFlags dwFlags);
 

        private void button1_Click(object sender, EventArgs e)
        {
            uint sonuc = SHEmptyRecycleBin(IntPtr.Zero, null, 0);
            MessageBox.Show("Sonuç: " + sonuc);
        }
    }
}

//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN