I was looking for a solution could make this process faster,but I didnt find anything?
a simple way is,
Code:
for(int i=1;i<=5000;i++)
{
string Filename="File"+i.ToString();
ChangeFile(FileName);//this method changes one file
}
but this method works very slowly for 5000 files,
can anybody give me an idea about this problem?
Thanks in advance.
--------------------------------------------
Mehdi.:)