I did but the problem is ....
I need next file of a particular file . For example if I have
001.dll
002.dll
003.dll
Then i have put condition like
Code:
while( next_file( handleDir, s_Buffer, charsmax( s_Buffer ) ))
{
if(!(containi(s_Buffer,"dll") !=-1) ||equali(s_Buffer,s_Temp) )
continue
but whatever is the file, nextfile is "..""
Now as I am doing continue it is again calculating the next file and I am getting only one file each time . The next file of ".."
So how to overcome it . I hope you got my problem