← All Documentation
Why "delete" isn't really delete
When you send a file to the Recycle Bin and then empty it, Windows simply marks the space the file occupied as "available" — the actual bytes are still sitting on your drive until something else happens to write over them. That's why free recovery tools like Recuva can often bring back files you thought were gone. For tax documents, passwords, old banking spreadsheets, or any file you actually need gone, you need something stronger.
File Shredder overwrites the file's bytes with random data before deleting it. After that, even forensic recovery software has nothing to reconstruct.
How it works
For each file you add, the shredder:
- Opens the file for writing.
- Fills every byte of it with cryptographically random data.
- Optionally repeats that process (multi-pass).
- Truncates the file to zero bytes, renames it to a random string, and finally deletes it.
The file's metadata is scrubbed along with the content, so even the original filename can't be recovered.
Pass count
The dropdown lets you choose how many overwrite passes to perform:
- 1 pass — plenty for modern SSDs and the vast majority of HDDs. Fastest.
- 3 passes — matches the US DoD 5220.22-M standard for sensitive but unclassified data.
- 7 passes — matches the older DoD 5220.22-M ECE standard. Overkill for modern drives.
- 35 passes — the famous Gutmann method. Designed for 1990s drive encodings and unnecessary today, but included for people who want maximum paranoia.
How to use it
- Go to Other → File Shredder.
- Add files using Add Files or Add Folder, or drag and drop from Explorer.
- Set the pass count. 1 pass is the sensible default.
- Click Shred. You'll be asked to confirm — once shredding starts, the files are gone forever.
- Watch the log. Each file is listed with its size and outcome.
There is no undo. This is the entire point. Triple-check the file list before clicking Shred. A file that's been shredded cannot be brought back by Recuva, TestDisk, a pro data-recovery service, or the FBI — the data is mathematically gone.
SSDs are a special case. Because modern SSDs constantly move data around internally (wear leveling), overwriting a file doesn't guarantee the old copy is physically erased — a copy may survive in a spare block. For single files, the shredder still gives excellent security because the drive's encryption layer (SSDs internally encrypt data) means the leftover ciphertext without the key is worthless. To fully sanitize an SSD before selling it, use the drive's Secure Erase command or the manufacturer's utility instead of file-by-file shredding.
Use cases where this matters:
- Before donating or selling a computer you won't wipe entirely.
- Disposing of tax documents or old bank statements.
- Cleaning up after a failed project that included confidential client data.
- Removing a password.txt file you stashed somewhere and now regret.