Click here to Skip to main content
Licence 
First Posted 28 Jun 2005
Views 105,761
Bookmarked 52 times

Filesystem TreeView

By | 8 Jul 2005 | Article
A filesystem treeview for .NET.

Screenshot

Introduction

There is no file system treeview in .NET 1.1! Therefore I ended up making my own. This is a very basic version of a file system treeview. There are a lot of other methods and or properties that could be added in order to make this a more useful control. However, I have posted this control with the intention that this will save someone some time and aggravation.

Performance is often an issue when dealing with recursion and an extremely large file system. Therefore to overcome this issue I designed this treeview component so it loads on demand. In order to make this happen, I initially only load the root directories and files. Obviously a file can not have any child nodes but a directory on the other hand can have sub-directories and files within it. If a directory has sub-directories and/or files, I add what I describe as a "fake child node". Basically all this means is that I add a child tree node to the "directory node" in order to display the "+" plus sign in front of it. This indicates to the user that they can drill down further to see the sub-directories and files. Here is some example code:

int fileCount = 0;

if( this.TreeView.ShowFiles == true )
    //get a file count
    fileCount = this._directoryInfo.GetFiles().Length;         

//if the directory contains 
//sub-items then add a fake child node to 
//indicate to the user that they can drill down
if( (fileCount + this._directoryInfo.GetDirectories().Length) > 0 )
    new FakeChildNode( this );

The FakeChildNode class is extremely simple. It derives from the TreeNode class and only has a single constructor that adds a child node to an existing node.

public class FakeChildNode : TreeNode
{
    public FakeChildNode( TreeNode parent ) : base()
    {
        parent.Nodes.Add( this );
    }
}

So now that we have the initial directories loaded and virtualized, we can write the code that controls the on-demand loading of the subnodes. In order to do this, I wrote an event handler for the "BeforeExpand" event of the treeview.

void FileSystemTreeView_BeforeExpand(object sender, 
                           TreeViewCancelEventArgs e)
{
    //if node is of type filenode then get out of event
    if( e.Node is FileNode ) return;
        
    DirectoryNode node = (DirectoryNode)e.Node;

    //checks to see if the node has already 
    //been loaded. Basically this just checks to 
    //see if the first child is of type "FakeChildNode"
    if (!node.Loaded)
    {
        //remove the fake child node used for virtualization
        node.Nodes[0].Remove();
        //Load sub-directories and files
        node.LoadDirectory();
        if( this._showFiles == true )
        node.LoadFiles();
    }
}

So now that you understand the basic logistics of this control, here is an example of how you can put it to use:

Using the code

C2C.FileSystem.FileSystemTreeView tree = 
             new C2C.FileSystem.FileSystemTreeView();         
Controls.Add( tree );
tree.Dock = DockStyle.Fill;
//if you want to view only folders 
//you can set the ShowFiles property to true
//tree.ShowFiles = false; 
tree.Load( @"C:\" );

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

About the Author

Michael Ceranski

Software Developer (Senior)
Concepts2Code
United States United States

Member

Michael is the co-founder and master consultant for Concepts2Code, a software consulting company based in Buffalo, New York. He's been programming since the early 1990's. His vast programming experience includes VB, Delphi, C#, ASP, ASP.NET, Ruby on Rails, Coldfusion and PHP. Michael also is a Microsoft Certified Application Developer and a Certified Technology Specialist for SQL Server.
 
Visit his blog.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionDisplay System Folders Pinmemberwynnej198319:59 24 Apr '07  
QuestionQueston about the selected node full path Pinmembercervanteskbron11:00 17 Apr '07  
QuestionGreat work PinmemberBoris Modylevsky0:04 22 Oct '06  
GeneralRe: Great work - Solution: ColorDepth PinmemberAssaad Awada4:25 28 Apr '08  
Questionhow to load the selectedfile int to the browser Pinmemberxall7:52 13 Aug '06  
Questionhow to open a file Pinmemberxall6:21 30 Jul '06  
AnswerRe: how to open a file PinmemberMichael Ceranski14:41 31 Jul '06  
GeneralSome small additions I made - Return the filename selected PinmemberJab_RTS18:57 11 Jul '06  
GeneralRe: Some small additions I made - Return the filename selected Pinmemberxall6:23 30 Jul '06  
GeneralFanta Fantastic PinmemberD. Emilio Grimaldo Tuñon9:51 29 Jun '06  
GeneralDoesn't Compile PinmemberTom Dane17:27 3 Jun '06  
GeneralSearch Filter Pinmemberholeinmypocket4:50 7 Feb '06  
GeneralRe: Search Filter Pinmemberalejo_rybak11:46 2 Oct '06  
GeneralPopulate on every expand PinmemberMichael Pitoniak1:05 13 Jan '06  
QuestionGet files to open in their associated app? PinmemberfatJ9:34 24 Aug '05  
AnswerRe: Get files to open in their associated app? Pinmembermceranski9:38 24 Aug '05  
GeneralRe: Get files to open in their associated app? PinmemberfatJ2:37 25 Aug '05  
GeneralRe: Get files to open in their associated app? Pinmemberdreamer813:05 25 Aug '05  
Generalextended version with drag and drop Pinmemberdreamer814:12 13 Aug '05  
GeneralRe: extended version with drag and drop PinmemberMichael Ceranski2:49 15 Aug '05  
GeneralRe: extended version with drag and drop Pinmemberdreamer815:35 16 Aug '05  
GeneralRe: extended version with drag and drop Pinmemberdreamer8122:38 17 Aug '05  
GeneralRe: extended version with drag and drop Pinmemberdreamer8123:20 17 Aug '05  
GeneralRe: extended version with drag and drop PinmemberMichael Pitoniak1:06 13 Jan '06  
QuestionSolution File? Pinmembergeorge33803:55 27 Jul '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 8 Jul 2005
Article Copyright 2005 by Michael Ceranski
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid