Ohstuff. I can see my deleted research sensitive images!
Fix?
Anyways, the reason for this is that when you delete file. Its not actually deleting it. Its deleting the part that says that "This next segment of data is image.jpg". Until that data is written over those files will still remain.
A way to make sure files are deleted is to manually 'zero out' the file. Zeroing out is taking the binary data and writing zeros all over it. For example
Your Data
1001010
0010101
1011011
0101010
The computer will write over all of that data making it
0000000
0000000
0000000
0000000