--- In [email protected], "John" <jm5...@...> wrote:
>
> --- In [email protected], "Sam" <glogic@> wrote:
> >
> > Hi All
> > I need some help finding file names with in a folder.
> 
> Hi Sam - please could you show us your code so we can see exactly what you 
> are doing?
>

Yup sure.

WIN32_FIND_DATA FindFileData;
bool t = FindFirstFile("c:\\test\\*.*",&FindFileData);
string stuff = FindFileData.cFileName;

when ever i try add the above as a code segment my browser crashes for some 
reason so dont give out i tried. Literally i just want to retrieve the name of 
what ever file it finds. then after words ill loop it with findnextfile to get 
all the file names if i can get it working that is. I have that test folder in 
place with a file in there to retrieve but the cFileName i keep getting is just 
"."
what stupid mistake am i making?
thanks for help
g

Reply via email to