<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4616.200" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Maybe it's a bit off-topic, sorry for any 
incovenience.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>In my library I need to have a repressentation of a 
directorty tree in memory, to search for files etc.</FONT></DIV>
<DIV><FONT face=Arial size=2>I'm using a tList like this :</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>pMyDirsItem = ^mydirsitem;</FONT></DIV>
<DIV><FONT face=Arial size=2>myDirsItem =RECORD</FONT></DIV>
<DIV><FONT face=Arial size=2>  info :tFileInfo; //name, size, time/date 
...</FONT></DIV>
<DIV><FONT face=Arial size=2>  sub :tList;</FONT></DIV>
<DIV><FONT face=Arial size=2>end;</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>myDirs :tList;</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>What I do is store the file/directory name and the 
like in DirsItem.info and if it's a directory "sub" points to another tList 
with the contents of that directory.</FONT></DIV>
<DIV><FONT face=Arial size=2>It works but I would like to know if someone have a 
better solution for this problem. I'm not very happy with the performance when I 
have to find a file in it.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>thanks, Ivan</FONT></DIV></BODY></HTML>