Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C#
Article

Windows Explorer in C#

Rate me:
Please Sign up or sign in to vote.
4.70/5 (34 votes)
20 May 20022 min read 227.6K   19.5K   87   33
This is the first in a series of articles demonstrating how to create an

Sample Image

Introduction

This is the first in a series of articles demonstrating how to create an Explorer-like application. The program uses the following controls: TreeView, ListView, Splitter, MainMenu, StatusBar, Panel, ImageList, and ColumnHeaders for the ListView. Many of the properties are set using the designer, so I would suggest that you download the project, unless of course you are not a beginner.

The program demonstrates the following:

  • How to read files and directories from disk, using the DirectoryInfo instance class.
  • How to populate nodes in a TreeView Control.
  • How to populate the ListView Control.
  • How to use a basic StatusBar.
  • How to use the After_Select Event of the TreeView Control.
  • How to use the Item_Activate Event of the ListView Control.
  • How to use the Load Event of the Form itself.

What I think is best about this program

  1. It is a simple design, which should help you to learn how to use the TreeView Control, It took four revisions.
  2. Compared to many of the other sample or demo programs available,  it loads files and directories fast!
  3. The program only loads the necessary files and folders, not the entire directory tree like many demos do.
  4. The TreeView's Tag property is entirely unused in this implementation, leaving you a place to put something.
  5. There is only one event, and two methods which drive the TreeView control.
  6. This program uses a minimal amount of string chopping, unlike many other demos in it's class.

In closing

This program is designed to show the basics to the beginner, experts will have to wait until I  become an expert! There are too many hard decisions to make when designing an Explorer Interface. So I have made some trade offs to keep the code as readable as possible. I plan to remove the "hard coded" stuff in future releases. 

One of the hardest decisions was to start the root directories at the Drive level instead of nesting under the Desktop\MyComputer nodes, which is what Windows Explorer does. You will also notice that I have turned off the "+" and "-" indicators on the TreeView, this was by design as the code to make this work properly is pretty complex for a beginner, not too mention doubling the code. 

I am disappointed that .NET does not have an easy way (maybe there is) too determine the type of drives attached to the computer. I wanted to use PInvoke, but I figured I would do that in another series or update.

If anyone has any comments please send email: russell@tymer.net

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
Engineer
United States United States
I'm a cranky old C# developer.

Comments and Discussions

 
GeneralRe: C# Windows Explorer Pin
Russell Mangel5-Jan-07 20:38
Russell Mangel5-Jan-07 20:38 
GeneralWindows Explorer in C# Pin
Sagar Joshi25-May-06 2:44
Sagar Joshi25-May-06 2:44 
GeneralDoesn't sort the directory names Pin
Lyle M9-Feb-06 4:33
Lyle M9-Feb-06 4:33 
GeneralRe: Doesn't sort the directory names Pin
Gluups6-Jul-21 22:18
Gluups6-Jul-21 22:18 
GeneralMessage Removed Pin
19-Sep-04 2:58
said_tambal19-Sep-04 2:58 
GeneralNice Example Pin
Roger Wright10-May-03 22:42
professionalRoger Wright10-May-03 22:42 
GeneralRe: Nice Example Pin
Russell Mangel8-Jun-03 19:56
Russell Mangel8-Jun-03 19:56 
GeneralRe: Nice Example Pin
Jonathan de Halleux23-Oct-03 0:02
Jonathan de Halleux23-Oct-03 0:02 
Russell Mangel wrote:
I was going to post another Inherited "TreeNode" version of Windows Explorer in C#. Even today, when I use the treeview control, I almost always use a derived TreeNode, and then add properties to the node.

I would be intereset on looking at this example Smile | :)

Nice tutorial, filled my needs.

Jonathan de Halleux.

www.pelikhan.com
GeneralRe: Nice Example Pin
Chris Walsh4-Apr-04 15:09
Chris Walsh4-Apr-04 15:09 
GeneralSmall fix .... Pin
Dejan Petrovic10-Jun-02 17:00
Dejan Petrovic10-Jun-02 17:00 
GeneralRe: Small fix .... Pin
Russell Mangel8-Jun-03 20:03
Russell Mangel8-Jun-03 20:03 
GeneralRe: Small fix .... Pin
Andreas Schoeneck28-Jan-04 2:55
Andreas Schoeneck28-Jan-04 2:55 
GeneralRe: Small fix .... Pin
ltg8253-Jun-06 16:26
ltg8253-Jun-06 16:26 
GeneralSmall fix to your small fix... Pin
OICU81TOO28-Nov-06 9:31
OICU81TOO28-Nov-06 9:31 
GeneralRe: Small fix .... Pin
--Rob2-Apr-07 19:14
--Rob2-Apr-07 19:14 

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.