My code deletes a file and rename some files including the deleted file name to another file.But This code works unexpected behaviour.What is the problem..Or what's wrong in my code..
Edited
5 files
file1.jpg,file2,jpg,file3.jpg,file4.jpg,file5.jpg
$target = 2; //target file to delete
$total = 5; //total files
$name = 'file';
unlink($name.$target.".jpg");//deleting
usleep(10000000);//to find deleted or not afterdelete
for($i = $target+1;$i<=$total;$i++)
{
rename($name.$i.".jpg" , $name.($i-1).".jpg");
}
My Expectation
file2 have to be deleted , then
file3.jpg rename to file2.jpg
file4.jpg rename to file3.jpg
file5.jpg rename to file4.jpg
But, the result is not what i expected.
The Result
- file2.jpg deleted.correctly.("I am sure i put usleep() after unlink(),the image deleted")
- file3.jpg renamed to file2.jpg but the file3 content has file2.jpg content
- file4.jpg renamed to file3.jpg
- file5.jpg renamed to file4.jpg
sometimes it works as i expected but sometimes not,
-file3 renamed to file2
-file4 renamed to file3
-file5 renamed to file4 but have file3 content
Every time It works unexpectedly and differently
Initially
After Delete between Usleep()
Final result
I really dont understand what is happening for my code.Please someone help me..
My suggestion; cache the files' names:
P.S: The code works just fine, (I even tested it!!); but take a look at the following: