Re: Does erasing a file also make previous files unrecoverab
In short, yes.
The big picture isn't as simplified. Files on disk comprise a few components: the file data and the file metadata. The file data is stored on clusters 1-4 (the smallest file system unit is the cluster, comprising one or more sectors, not the sectors per se) but for different file systems, the file metadata is stored in different locations. In the case of NTFS, file names, times, attributes etc are stored in the MFT; for FAT the file names and times are stored in the directory containing the file.
Deleting 1.mp3 would only mark the reference to clusters 1-4 as not in use. It does not mark clusters 1-4 as deleted. Thus, file recovery is possible, on the premise that the clusters and order of clusters which were used to store the file data can be determined. In this instance, if the forensic examiner were to immediately look up clusters 1-4, the file data will be there. At the same time, as the file metadata was not erased, a forensic examiner can go to the MFT/FAT and find the locations of the file, which allows him to recover the file.
Deleting 1.mp3 and coincidentally storing 2.mp3 over the same clusters 1.mp3 used would (presently) prevent recovery of the data of 1.mp3 but not the metadata of 1.mp3. Simplifying things, by not considering things like the USN journal for NTFS volumes, and shadow copies from > Win2k systems, would result in the following observations:
- 1.mp3 will not have the file contents recoverable.
- 2.mp3 will, forensically, have the same file data as 1.mp3
- 1.mp3 will have the metadata still accessible (creation/modified/access times etc; under NTFS this will also include the time the file was deleted)
Eraser has been designed to do the above, and to remove the file metadata such that the file name cannot be found, it would be significantly more complicated to recover a file if the clusters used by the deleted file and file name cannot be determined in the first place.
Hopefully this clarifies things; otherwise please do ask.