Click here to Skip to main content
15,878,852 members
Articles / Programming Languages / XML

FilesystemTree Control in .NET

Rate me:
Please Sign up or sign in to vote.
4.07/5 (13 votes)
22 May 20032 min read 99.7K   848   20   11
A FilesystemTree view control in VB.NET. Developed with VS.NET, using the system.management namespace

The Control

FilesystemTree is a control which will read the system resources and display a tree from which a user can navigate to a file or a folder...

Programmers can use this control as part of their applications to allow users to navigate to a folderList or fileSystemTree structure, and get back the file/folder path that the user has selected.

The Code

The code is self-explanatory. Briefly, it has a TreeView control linked to an ImageList control. The ImageList control is for the TreeView to pick its icons from. To view the images in the ImageList control, open properties of the ImageList control and click on the ellipsis (...) next to the images property.

Using system.management namespace in .NET, the TreeView is filled with the resources/drives available on the system and as the user expands a node, sub-nodes are populated in a more user-friendly way. The textbox above the TreeView control is populated with the user's selection of a file/folder. The textbox is disabled... it's only for viewing. The user's selection can also be accessed by using filesystemtree1.pathselected (if filesystemtree1 is an instance of the control on an application).

Using the Code

Add the control to the project. If you are using VS.NET, right click on the toolbox in VS.NET -> Customize -> browse to the control's DLL and select. This will get the control on the toolbox. Drag and drop the control on to your application. If the control's instance on your application is called FilesystemTree1, use the code below, to get the user's selection.

C#
//get the user's selection.
FileSystemTree1.pathselected
//

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.



Comments and Discussions

 
GeneralUpload MS Access Data on Network Pin
Sanjay C H19-Jun-06 3:08
Sanjay C H19-Jun-06 3:08 
Generaltree duplicates file/directory names Pin
bc6018-Apr-06 8:05
bc6018-Apr-06 8:05 
GeneralXP Icons Pin
idknow7-Feb-05 1:33
idknow7-Feb-05 1:33 
GeneralVB .NET 1.1 - Out Of Memory Exception Pin
branded218-Mar-04 4:35
branded218-Mar-04 4:35 
GeneralRe: VB .NET 1.1 - Out Of Memory Exception Pin
User 3073524-Mar-04 5:05
professionalUser 3073524-Mar-04 5:05 
GeneralFileSystemTree Control Additions Pin
csnyder3-Nov-03 13:34
csnyder3-Nov-03 13:34 
GeneralDownload Error Pin
AxelM22-May-03 22:41
AxelM22-May-03 22:41 
GeneralRe: Download Error Pin
User 3073523-May-03 0:14
professionalUser 3073523-May-03 0:14 
GeneralRe: Download Error Pin
AxelM23-May-03 0:26
AxelM23-May-03 0:26 
GeneralRe: Download Error Pin
Anonymous28-May-03 6:46
Anonymous28-May-03 6:46 
GeneralRe: Download Error Pin
Anonymous28-May-03 6:50
Anonymous28-May-03 6:50 

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.