You can use the SHChangeNotify API.
[System.Runtime.InteropServices.DllImport("Shell32.dll")]
private static extern int SHChangeNotify(int eventId, int flags, IntPtr item1, IntPtr item2);
and then call it this way
SHChangeNotify(0x8000000, 0x1000, IntPtr.Zero, IntPtr.Zero);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…