30/09/2018, 17:49

Cách Truy Xuất Tới Recycle Bin trong Winform

Chào mọi người, giả sử mình muốn truy cập đến RecycleBin (giống như File Explorer ấy) thì phải làm như thế nào ? Mình đã search nhưng chưa tìm thấy cách nào cả

Giống như Desktop thì mình làm như thế này:

string Desktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
TreeNode DesktopNode = new TreeNode(@"Desktop", 0, 0);
DesktopNode.Tag = Desktop;

treeView.Nodes.Add(DesktopNode);
Bài liên quan
0