mansi sharma
Member
- Joined
- Mar 8, 2009
- Messages
- 16
- Programming Experience
- Beginner
Hey frnds,I want to get files of Recycle Bin that are currently present in Recycle Bin.can somebody help me out.Cz i have no idea from where to start.
Dim items As New List(Of Shell32.FolderItem)
Dim sh As New Shell32.Shell
Dim folder As Shell32.Folder = sh.NameSpace(Shell32.ShellSpecialFolderConstants.ssfBITBUCKET)
For Each item As Shell32.FolderItem In folder.Items
items.Add(item)
Next
Me.ItemsListBox.DataSource = items
Me.ItemsListBox.DisplayMember = "Name"