Treeview for Recursing Directory and File Structure

  • Thread starter Thread starter Elmo Watson
  • Start date Start date
E

Elmo Watson

I need to feed some routine a 'root' folder, and then, have the code recurse
through the directory structure, showing folders and all files in each
folder.
I've been working on this for 2 days, having searched the net, but nothing I
do seems to work.

Can anyone point me to a working example or two?

thnx
 
I need to feed some routine a 'root' folder, and then, have the code
recurse through the directory structure, showing folders and all files in
each folder.
I've been working on this for 2 days, having searched the net, but nothing
I do seems to work.

Can anyone point me to a working example or two?

thnx

I put an app on the Code Project:
http://www.codeproject.com/KB/files/JFileManager31.aspx

I would urge you NOT to fill the whole tree, just fill each node as it is
expanded, or your users will die of old age waiting.
 
Back
Top