get path and filename of all files in a given dir and its subdirs using c++ (builder) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T09:03:27Zhttp://stackoverflow.com/feeds/question/456504http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/456504/get-path-and-filename-of-all-files-in-a-given-dir-and-its-subdirs-using-c-buil0get path and filename of all files in a given dir and its subdirs using c++ (builder)MrVimes2009-01-19T04:06:44Z2009-01-19T04:32:05Z
<p>I was given this code a while back. I finally got around to testing it (with some changes to put the files in a different place)...</p>
<pre><code>void AddFiles(AnsiString path/*, TDataSet *DataSet*/)
{
TSearchRec sr;
int f;
f = FindFirst(path+"\\*.*", faAnyFile, sr);
while( !f )
{
if(sr.Attr & faDirectory)
{
if(sr.Name != "." && sr.Name != "..")
{
path.sprintf("%s%s%s", path, "\\", sr.Name);
AddFiles(path/*, DataSet*/);
}
}
else
{
Form1->ListBox1->Items->Add(path+ "\\"+ sr.Name);
//DataSet->Append();
//DataSet->FieldByName("Name")->Value = sr.Name;
/* other fields ... */
//DataSet->Post();
}
f = FindNext(sr);
}
FindClose(sr);
}
</code></pre>
<p>It doesn't work properly. In the beginning it gets mixed up..</p>
<p>a real structure of...</p>
<p>root
root\subdir1
root\subdir2
root\subdir3</p>
<p>gets messed up like this...</p>
<p>root
root\subdir1
root\subdir1\subdir2
root\subdir1\subdir2\subdir3</p>
<p>and eventually it stops including the root or sub\sub folders and 'path' just contains a subfolder (without its root folders)</p>
<p>this is completely useless for aquring useable full-path filenames.</p>
<p>so <strong>either</strong> can you tell me where the code is going wrong... <strong>or</strong> give me some advice on how to get the full path filenames in a dir and all its subdirs.</p>
<p>I want it to be as basic as possible. i.e. no uncommon advanced c++ features. stuff that a builder noob is likely to be able to debug.</p>
http://stackoverflow.com/questions/456504/get-path-and-filename-of-all-files-in-a-given-dir-and-its-subdirs-using-c-buil/456529#4565293Answer by sth for get path and filename of all files in a given dir and its subdirs using c++ (builder)sth2009-01-19T04:32:05Z2009-01-19T04:32:05Z<p>Here you append each subpath to the current path:</p>
<pre><code>path.sprintf("%s%s%s", path, "\\", sr.Name);
AddFiles(path/*, DataSet*/);
</code></pre>
<p>Use a new variable for the combined path, so you don't mess up the <code>path</code> variable you still need for the rest of the files/dirs in the directory:</p>
<pre><code>AnsiString subpath;
subpath.sprintf("%s%s%s", path, "\\", sr.Name);
AddFiles(subpath/*, DataSet*/);
</code></pre>