how to browse through folders in system?
In my windows application I wan user to browse through folders, drives and on selecting a folder it will display the content of that folder, same like windows explorer. I know there is existing control FolderBrowserDialog, but thats a separate dialog doesn't provide facility like explorer. How can I achieve this?
Edit: I am developing a utility for my personal use that will do some file management, copy, paste stuff and all. I found this: http://w开发者_运维知识库ww.codeproject.com/KB/miscctrl/FileBrowser.aspx but this is having many bugs.
You'll probably want to build an application around (among others) the System.Windows.Forms.TreeView and System.Windows.Forms.ListView controls.
精彩评论