Every file stored on the hard disk can be divided into two parts: the file header and the data area for storing data. The file header is used to record the file name, file attributes, occupied cluster number and other information. The file header is stored in the cluster and mapped in the FAT table (file allocation table). Real data is stored in the data area. The usual deletion is actually to modify the first two codes of the file header. This modification is mapped in the FAT table, marking the file as deleted, and clearing the registration item of the cluster number occupied by the file in the FAT table, which means that the space is released, which is also the reason why the hard disk space usually increases after the file is deleted. The real file content is still stored in the data area and has not been deleted. You need to wait until later to write data and overwrite this data area before you can completely delete the original data. If it is not overwritten by later saved data, it will not be erased from the disk. Partitioning with Fdisk and Formatting with format are similar to deleting files. The former only changes the partition table, while the latter only modifies the FAT table and does not directly delete data from the data area.
According to the principle of file deletion, the only way to completely delete data is to completely overwrite the data area where the deleted file is located. This is the reason why most complete deletion tools are used: write useless data into the data area of the deleted file repeatedly and overwrite it for many times, thus completely deleting the file.
Although this pseudo-deletion of Windows has brought us benefits, it has also left us with regrets. But for very confidential documents, there is trouble and the possibility of being restored. Therefore, to delete confidential documents, we must use the tool of complete deletion to completely "crush" confidential documents, so as to sit back and relax.