Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / XML

FolderTreeView Control

Rate me:
Please Sign up or sign in to vote.
4.87/5 (33 votes)
25 Oct 20023 min read 389.6K   5K   129   107
A simple explorer-like FolderTreeView control for C#

Sample Image

Introduction

This is an all-new version of the FolderTreeView control I posted here at CodeProject some weeks ago. The control now starts in the Desktop namespace, and a new drilling method has been added so the startup folder can be specified. Please note that this control is not intended to have all of the functionality of the actual Windows Explorer TreeView - it is a light-weight control designed for use in projects where you want to supply a treeview for folder navigation, without supporting windows shell extensions. If you are looking for a control that supports shell extensions, you should be looking at the excellent ËxplorerTreeControl submitted by Carlos H Perez here at the CodeProject website.

How It Works

After calling the InitFolderTreeView() method, a dummy Desktop note is created as the root node, and then the shell's Desktop namespace is iterated to populate the first level nodes. The child nodes are then iterated, checking only for the presence of sub-child nodes. If sub-child nodes are found, a dummy node is inserted so that the [+] will be displayed for folders that can be expanded. When the BeforeExpand event fires, the folder being expanded is checked for a dummy node. If a dummy is present, it is removed and the node's children are re-populated. If the node's children have already been populated, no further action occurs.

Usage

The FolderTreeView control is based on 3 classes:

  • FolderTreeView - The FolderTreeView implementation
  • ShellOperations - Supporting Shell Operations
  • ExtractIcons - Shell Icon Extractor

The control naturally derives from the System.Windows.Forms.TreeView, exposing 1 new property, GetSelectedNodePath() which returns the currently selected node's full path. There are 2 new methods: InitFolderTreeView() must be called to populate the TreeView - normally, you would call this in your Form's OnLoad event. The 2nd method is DrillToFolder(string folderPath) - this will recurse through the tree looking for the specified folder path, returning a boolean to indicate if the search was successful or not.

The method used to retrieve the icon for the Desktop root node works fine, but is perhaps not the best way to go about it. This control has NOT been tested in Win9x, NT or 2000 - feedback on these OSs would be much appreciated. Of course, if you improve this control, I would appreciate the update, and if you have any feedback to offer, please post it below.

Updates

Version 1.11

  • Updated the GetDesktopIcon() method so it returns the shell's small desktop icon rather than the large version
  • Added code so that the Desktop node would return the full desktop folder path

I have now tested the code on Windows Me without problem - feedback on how it works with other OSs would be appreciated!

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
Thailand Thailand
Furty will code for food.

Comments and Discussions

 
GeneralPerformance and network neighbourhood Pin
rubberring8-Nov-05 10:32
rubberring8-Nov-05 10:32 
GeneralRe: Performance and network neighbourhood Pin
dario7711-Jan-06 7:06
dario7711-Jan-06 7:06 
QuestionControl in Designer with DLL Compilation Pin
akiriwas8-Oct-05 17:13
akiriwas8-Oct-05 17:13 
AnswerRe: Control in Designer with DLL Compilation Pin
Gavin Roberts18-Oct-05 3:03
Gavin Roberts18-Oct-05 3:03 
QuestionHow to add create/delete folder? Pin
Tiger.xing7-Oct-05 19:18
Tiger.xing7-Oct-05 19:18 
GeneralException removing folder with Directory.Delete Pin
Sergio Camilleri30-Mar-05 1:55
Sergio Camilleri30-Mar-05 1:55 
QuestionExcellent - License? Pin
Anonymous3-Mar-05 13:17
Anonymous3-Mar-05 13:17 
AnswerRe: Excellent - License? Pin
Furty18-Mar-05 12:17
Furty18-Mar-05 12:17 
This code is free for any usage, so long as you're not selling the control itself, or selling it as part of a commerical control library.

Bottom line is the control must always be freeware.
GeneralGreat stuff Pin
derhamyh2-Mar-05 15:36
derhamyh2-Mar-05 15:36 
GeneralExcellent! Pin
scottfm28-Jan-05 9:27
scottfm28-Jan-05 9:27 
QuestionAnyone had luck with fileSystemWatcher with this control? Pin
IndyJason7911-Jan-05 0:52
IndyJason7911-Jan-05 0:52 
GeneralTip to remove Recyle Bin & Zip File Nodes Pin
IndyJason792-Jan-05 17:59
IndyJason792-Jan-05 17:59 
GeneralRe: Tip to remove Recyle Bin & Zip File Nodes Pin
Nigai18-Mar-05 8:44
Nigai18-Mar-05 8:44 
GeneralThis in VB?.... Pin
Brad Fackrell26-Oct-04 4:33
Brad Fackrell26-Oct-04 4:33 
GeneralRe: This in VB?.... Pin
zsavov30-Mar-05 16:27
zsavov30-Mar-05 16:27 
GeneralName of the root node Pin
SourGrape10-Oct-04 9:49
SourGrape10-Oct-04 9:49 
GeneralRe: Name of the root node Pin
Furty10-Oct-04 14:01
Furty10-Oct-04 14:01 
GeneralRe: Name of the root node Pin
SourGrape11-Oct-04 20:42
SourGrape11-Oct-04 20:42 
GeneralMy network places - Windows 2000 Pin
graham.ball19-Aug-04 3:42
graham.ball19-Aug-04 3:42 
GeneralRe: My network places - Windows 2000 Pin
graham.ball19-Aug-04 4:34
graham.ball19-Aug-04 4:34 
GeneralGetFolderIcon Pin
Yura Tigiev25-Jul-04 23:17
Yura Tigiev25-Jul-04 23:17 
Generalmy network places Pin
then52030-Mar-04 21:52
then52030-Mar-04 21:52 
GeneralWindows XP shadow Pin
aiolia9-Feb-04 16:15
aiolia9-Feb-04 16:15 
GeneralRe: Windows XP shadow Pin
dgentils8-Mar-04 17:03
dgentils8-Mar-04 17:03 
GeneralRe: Windows XP shadow Pin
a020912926-Mar-04 12:17
a020912926-Mar-04 12:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.