Click here to Skip to main content
15,887,301 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am getting files and folders of a directory in cmd prompt from where I am getting those files and folders information in a string in c# windows forms application using
C#
Stream Reader

So, following is my string which I displayed in a messageBox
CSS
/sdcard/Music/:
----rwxr-x system sdcard_rw 8414449 2013-08-02 04:01 Kalimba.mp3
d---rwxr-x system sdcard_rw  2013-08-02 07:43 aaa
d---rwxr-x system sdcard_rw  2013-08-02 04:02 abc
d---rwxr-x system sdcard_rw  2013-08-02 04:06 afolder
----rwxr-x system sdcard_rw 280065 2013-08-02 04:01 mono.mp3

/sdcard/Music//aaa:

/sdcard/Music//abc:
d---rwxr-x system sdcard_rw  2013-08-02 04:02 New Folder
----rwxr-x system sdcard_rw 280065 2013-08-02 04:01 aty.mp3

/sdcard/Music//abc/New Folder:
----rwxr-x system sdcard_rw 8414449 2013-08-02 04:02 msc.mp3

/sdcard/Music//afolder:
----rwxr-x system sdcard_rw 280065 2013-08-02 04:06 xyz zyx vyx.mp3



Now i want to make a tree view from this text string and add nodes and child nodes as the names of files and folder for example aaa, kalimba.mp3,aaa,xyz zyx vyx.mp3.But the tree view nodes and child nodes should be in a hierarchy like file explorer

hope you i delivered my question correctly
Posted
Updated 2-Aug-13 6:08am
v3

1 solution

I think this can be helpful to you...
TreeView for .NET
and check this one too
TreeView Example
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900