{"id":53,"date":"2026-06-26T09:00:00","date_gmt":"2026-06-26T09:00:00","guid":{"rendered":"https:\/\/backendside.com\/blog\/2026\/06\/26\/recovering-deleted-files-on-windows-ntfs-fat32-exfat-and-what-actually-survives\/"},"modified":"2026-06-28T13:14:59","modified_gmt":"2026-06-28T13:14:59","slug":"recovering-deleted-files-on-windows-ntfs-fat32-exfat-and-what-actually-survives","status":"publish","type":"post","link":"https:\/\/backendside.com\/blog\/2026\/06\/26\/recovering-deleted-files-on-windows-ntfs-fat32-exfat-and-what-actually-survives\/","title":{"rendered":"Recovering Deleted Files on Windows: NTFS, FAT32, exFAT and What Actually Survives"},"content":{"rendered":"<p class=\"lead\"><strong>Recovering deleted files on Windows<\/strong> is, in most cases, a question of timing and filesystem internals &mdash; not magic. When you press Shift+Delete or empty the Recycle Bin, the bytes that made up your file are almost always still on the disk; what disappears is the bookkeeping that tells Windows where to find them. Understand how the bookkeeping works on <strong>NTFS<\/strong>, <strong>FAT32<\/strong> and <strong>exFAT<\/strong> and you understand what is recoverable, when, and why.<\/p>\n<p>This article is an overview of how deletion actually works on the three filesystems you&rsquo;ll meet on Windows, what changes the odds of recovery, and how a dedicated tool such as <strong>DeepRecoveryDesk<\/strong> turns that into a practical, safe recovery workflow.<\/p>\n<figure style=\"margin:1.75rem 0;\">\n  <img decoding=\"async\" src=\"https:\/\/backendside.com\/blog\/wp-content\/uploads\/2026\/06\/deeprecoverydesk_header.png\" alt=\"DeepRecoveryDesk &mdash; deleted file recovery for Windows across NTFS, FAT32 and exFAT\" style=\"width:100%;height:auto;border:1px solid #e4e2de;border-radius:10px;\"><figcaption style=\"font-size:.82rem;color:#6b6a66;text-align:center;margin-top:.6rem;\">DeepRecoveryDesk &mdash; deleted-file recovery for Windows, across the Recycle Bin, NTFS, FAT32, exFAT, and signature-based Deep Scan.<\/figcaption><\/figure>\n<div style=\"border:1px solid #c5d3f8;background:linear-gradient(135deg,#eef2fd 0%,#ffffff 72%);border-radius:14px;padding:1.5rem 1.65rem;margin:2rem 0;\">\n<div style=\"font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#2d5be3;margin-bottom:.55rem;\">&#128295; BackendSide Tool<\/div>\n<h4 style=\"margin:0 0 .45rem;font-size:1.15rem;color:#1a1916;font-weight:700;\">DeepRecoveryDesk &mdash; Recover Deleted Files on Windows<\/h4>\n<p style=\"margin:0 0 1.05rem;color:#3d3c38;font-size:.92rem;line-height:1.65;\"><strong>DeepRecoveryDesk<\/strong> recovers deleted files from the <strong>Recycle Bin<\/strong>, from <strong>NTFS, FAT32 and exFAT<\/strong> volumes, and through <strong>signature-based Deep Scan<\/strong> after a quick format. Drives are opened <strong>strictly read-only<\/strong>, every recovered file is verified with <strong>SHA-256<\/strong>, and nothing leaves your machine &mdash; no telemetry, no cloud, no account.<\/p>\n<p>  <a href=\"https:\/\/backendside.com\/deeprecoverydesk.php\" style=\"display:inline-flex;align-items:center;gap:.4rem;background:#2d5be3;color:#ffffff;font-weight:600;font-size:.85rem;padding:.6rem 1.2rem;border-radius:6px;text-decoration:none;\">Explore DeepRecoveryDesk &rarr;<\/a>\n<\/div>\n<h2>What &ldquo;delete&rdquo; really means<\/h2>\n<p>The intuition that a deleted file is &ldquo;gone&rdquo; is, at the storage layer, almost always wrong. Filesystems don&rsquo;t erase data on delete; they mark the metadata as free, return the clusters that held the file to the available pool, and move on. The actual bytes &mdash; the contents of your document, photo, or spreadsheet &mdash; remain on disk until something else writes over them. Everything practical about Windows file recovery follows from that fact.<\/p>\n<p>What differs between filesystems is precisely <em>which<\/em> piece of metadata is invalidated, how aggressively it is overwritten, and how much survives long enough to reconstruct the original file.<\/p>\n<h2>NTFS: the Master File Table and the USN journal<\/h2>\n<p>NTFS is the default filesystem for Windows system drives and almost every internal HDD or SSD. Every file and directory on an NTFS volume has a record in the <strong>Master File Table (MFT)<\/strong> &mdash; a structured database living inside the volume itself &mdash; that holds the name, timestamps, security descriptor, and, crucially, the <strong>data runs<\/strong>: the list of clusters where the file&rsquo;s contents are stored. Small files (typically under ~700 bytes) live entirely <em>inside<\/em> their MFT record as <em>resident<\/em> data; larger files store their content in clusters elsewhere on the volume.<\/p>\n<p>When a file is deleted on NTFS:<\/p>\n<ul>\n<li>The MFT record is flagged as unused, but the record itself &mdash; including the filename, timestamps and data runs &mdash; is left intact until that slot is reused.<\/li>\n<li>The clusters listed in the data runs are returned to the <strong>$Bitmap<\/strong> (NTFS&rsquo; cluster allocation map) as free, but the actual cluster contents are not zeroed.<\/li>\n<li>An event is appended to the <strong>USN change journal<\/strong> (<code>$UsnJrnl<\/code>), recording the file&rsquo;s name, parent directory and the type of change.<\/li>\n<\/ul>\n<p>From a recovery standpoint, the MFT is the gift that keeps on giving. A flagged-unused record still points at the original clusters, so &mdash; provided those clusters haven&rsquo;t been re-allocated &mdash; a tool can reconstruct the file byte-for-byte, with its <em>original filename and full path<\/em>. The USN journal is the second gift: even when an MFT record has been recycled for a new file, the journal often still names the deleted file and when it went away, giving a recovery tool something to look for during a signature pass. This is why NTFS deletions are typically the most recoverable of the three.<\/p>\n<h2>FAT32 and exFAT: directory entries and allocation chains<\/h2>\n<p>FAT32 and exFAT &mdash; the filesystems Windows still uses on USB sticks, SD cards, and almost every removable disk smaller than 32 GB &mdash; are simpler. There is no MFT and no transactional journal of metadata changes; the filesystem is a <strong>File Allocation Table (FAT)<\/strong>, which is just an array of cluster pointers, plus a tree of <strong>directory entries<\/strong> describing each file.<\/p>\n<p>When you delete a file on FAT32:<\/p>\n<ul>\n<li>The first byte of the directory entry is replaced with <code>0xE5<\/code>, marking it &ldquo;available.&rdquo; The rest of the entry &mdash; the size, first cluster, and timestamps &mdash; is left alone, and the long filename (LFN) entries that precede it survive.<\/li>\n<li>The chain of FAT entries that linked the file&rsquo;s clusters is zeroed out, freeing them in the allocation table.<\/li>\n<\/ul>\n<p>For a non-fragmented file (the common case on flash media), recovery is straightforward: you know the start cluster from the directory entry, you know the size, you read <code>ceil(size \/ cluster_size)<\/code> consecutive clusters from there. exFAT improves on FAT32 with 64-bit sizes, an <strong>allocation bitmap<\/strong> instead of a serial FAT chain, and a notion of contiguous extents &mdash; which, helpfully for recovery, means a deleted file&rsquo;s extents are explicitly recorded in its directory entry, so even fragmented files can be reassembled by following the recorded allocation chain.<\/p>\n<p>The catch on removable media is that flash storage tends to allocate aggressively and re-use clusters quickly &mdash; especially on cameras that loop-record &mdash; so the window in which directory entries and underlying clusters survive intact is often narrower than on a spinning NTFS volume.<\/p>\n<h2>When the metadata is gone: signature-based carving<\/h2>\n<p>A <strong>quick format<\/strong> writes a fresh, empty filesystem structure on top of an existing one. The MFT, FAT and directory tree are replaced with a clean slate, but the body of the volume &mdash; gigabytes of actual file data &mdash; is left untouched. The same is true after a partition has been deleted, or when metadata has been overwritten by normal use even though older file data still lingers in unallocated space.<\/p>\n<p>This is where <strong>signature-based file carving<\/strong> earns its name. Instead of trusting the filesystem to tell it where the files are, a carver scans the raw bytes of the volume looking for known <strong>file signatures<\/strong> &mdash; the magic numbers that identify a file format. JPEG starts with <code>FF D8 FF<\/code>, PNG with <code>89 50 4E 47<\/code>, PDF with <code>%PDF<\/code>, ZIP and modern Office documents with <code>PK\\x03\\x04<\/code>, SQLite with <code>SQLite format 3<\/code>, and so on. Once a header is found, the carver follows format-specific structure (length fields, end-of-image markers, central directories, frame chains) to determine where the file ends and pulls it out.<\/p>\n<p>Carving works <em>filesystem-agnostically<\/em> and recovers content the metadata-based methods can&rsquo;t, but it has well-known limits: filenames and original paths are lost (a carved JPEG comes out as <code>jpeg_00001.jpg<\/code>), and files that were physically fragmented at the time of deletion may come back truncated or split, because the carver has no map of where their non-contiguous pieces lived.<\/p>\n<h2>What makes recovery <em>fail<\/em><\/h2>\n<p>Whether recovery succeeds at all comes down to one question: have the clusters that held your file been overwritten? Anything that writes to the same volume &mdash; opening apps, installing software, downloading the recovery tool itself onto the affected drive, even normal background indexing &mdash; can land on the clusters you need and make the data unrecoverable. Two specific Windows behaviours deserve a mention:<\/p>\n<ul>\n<li><strong>TRIM on SSDs.<\/strong> On modern NTFS volumes backed by an SSD, Windows sends a <strong>TRIM<\/strong> command to the drive when files are deleted, telling the SSD that the underlying flash pages no longer hold useful data. The SSD&rsquo;s controller is then free to erase those pages in the background &mdash; and once it has, even a perfectly preserved MFT record won&rsquo;t help, because the clusters it points at now read back as zeros. This is why recovery rates from SSDs are dramatically worse than from spinning disks, and why the time-from-deletion clock is much shorter.<\/li>\n<li><strong>System Restore and Volume Shadow Copy.<\/strong> NTFS&rsquo; built-in <strong>Volume Shadow Copy Service (VSS)<\/strong> sometimes preserves an older version of a file inside a restore point. Recovery tools that know to look there can find files even after the live metadata has been wiped.<\/li>\n<\/ul>\n<p>The first rule of file recovery &mdash; before any tool is involved &mdash; is therefore: <strong>stop writing to the affected drive immediately<\/strong>. If the data matters, install your recovery tool on a different drive, scan the affected one read-only, and recover its files to a third location.<\/p>\n<h2>How DeepRecoveryDesk applies all of this<\/h2>\n<p><strong>DeepRecoveryDesk<\/strong> is a Windows desktop app that bundles each of these recovery paths into a single workflow with safety constraints designed for the realities above. It is built around four engines that match the cases laid out in this article:<\/p>\n<ul>\n<li><strong>Recycle Bin recovery<\/strong> &mdash; the data is fully intact and the metadata is in <code>$Recycle.Bin<\/code>, so the engine simply reconstructs the original filename and path and writes the file out. <em>No administrator rights required.<\/em><\/li>\n<li><strong>NTFS recovery<\/strong> &mdash; reads the MFT directly from the raw volume, follows the data runs of flagged-unused records, and cross-references the <strong>USN change journal<\/strong> to surface names and timestamps of recently-deleted files whose MFT records may already have been re-used.<\/li>\n<li><strong>FAT32 &amp; exFAT recovery<\/strong> &mdash; walks the directory tree on removable media, preserves long filenames, and on exFAT follows the recorded allocation chain so fragmented files can be reassembled.<\/li>\n<li><strong>Deep Scan (signature carving)<\/strong> &mdash; filesystem-agnostic carver for JPG, PNG, GIF, TIFF, PDF, ZIP \/ Office, SQLite, 7z, RAR, GZ and MP3 files, used when metadata is gone &mdash; for example after a quick format.<\/li>\n<\/ul>\n<p>Around the engines, three guarantees address the &ldquo;don&rsquo;t make it worse&rdquo; rule:<\/p>\n<ul>\n<li>Source drives are opened <strong>strictly read-only<\/strong>. The app refuses to recover files back onto the source drive, eliminating the most common way users overwrite the data they&rsquo;re trying to save.<\/li>\n<li>Every recovered file is verified with a <strong>SHA-256<\/strong> checksum, computed on the bytes actually written to the destination.<\/li>\n<li>Results stream into a searchable grid as they are found, with a <strong>colour-coded confidence<\/strong> (green \/ amber \/ red) so you know which files are likely to come back intact &mdash; and you can <strong>preview<\/strong> any result (text, image thumbnail, or hex) before recovering it.<\/li>\n<\/ul>\n<p>The app runs un-elevated by default. Recycle Bin recovery never requires administrator rights; raw NTFS \/ FAT32 \/ exFAT scans prompt to relaunch as administrator only when the operating system requires it. There are no network calls and no telemetry &mdash; the status bar shows so explicitly.<\/p>\n<h2>Key takeaways<\/h2>\n<ul>\n<li>Deletion on Windows almost never erases the underlying data &mdash; it invalidates the metadata that points at it. Whether recovery succeeds depends on what has been written to the volume since.<\/li>\n<li><strong>NTFS<\/strong> is the most recoverable of the three: the <strong>Master File Table<\/strong> retains data runs in flagged-unused records, and the <strong>USN journal<\/strong> retains a history of recent deletions.<\/li>\n<li><strong>FAT32<\/strong> and <strong>exFAT<\/strong> use directory entries plus an allocation table \/ bitmap; recovery is straightforward when entries survive, but flash media re-uses clusters quickly.<\/li>\n<li>After a <strong>quick format<\/strong> or when metadata is otherwise lost, <strong>signature-based carving<\/strong> can still recover file content for well-known formats &mdash; without filenames or paths.<\/li>\n<li><strong>SSD TRIM<\/strong> shortens the recovery window dramatically on modern internal drives. <strong>Stop writing<\/strong> to the affected volume the moment you notice the deletion.<\/li>\n<li>Use a recovery tool that is <strong>read-only<\/strong> on the source and refuses to recover back to it &mdash; <strong>DeepRecoveryDesk<\/strong> is built that way, and adds SHA-256 verification and live confidence scoring on top.<\/li>\n<\/ul>\n<p>If you&rsquo;re facing a real recovery situation right now, the most important first step is also the simplest: <em>don&rsquo;t write to the drive in question<\/em>. Install DeepRecoveryDesk somewhere else, point it at the affected drive, and let the right engine for the case do its work.<\/p>\n<div style=\"border:1px solid #c5d3f8;background:linear-gradient(135deg,#eef2fd 0%,#ffffff 72%);border-radius:14px;padding:1.5rem 1.65rem;margin:2rem 0;\">\n<div style=\"font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#2d5be3;margin-bottom:.55rem;\">&#128295; BackendSide Tool<\/div>\n<h4 style=\"margin:0 0 .45rem;font-size:1.15rem;color:#1a1916;font-weight:700;\">DeepRecoveryDesk &mdash; Recover Deleted Files on Windows<\/h4>\n<p style=\"margin:0 0 1.05rem;color:#3d3c38;font-size:.92rem;line-height:1.65;\"><strong>DeepRecoveryDesk<\/strong> recovers deleted files from the <strong>Recycle Bin<\/strong>, from <strong>NTFS, FAT32 and exFAT<\/strong> volumes, and through <strong>signature-based Deep Scan<\/strong> after a quick format. Drives are opened <strong>strictly read-only<\/strong>, every recovered file is verified with <strong>SHA-256<\/strong>, and nothing leaves your machine &mdash; no telemetry, no cloud, no account.<\/p>\n<p>  <a href=\"https:\/\/backendside.com\/deeprecoverydesk.php\" style=\"display:inline-flex;align-items:center;gap:.4rem;background:#2d5be3;color:#ffffff;font-weight:600;font-size:.85rem;padding:.6rem 1.2rem;border-radius:6px;text-decoration:none;\">Explore DeepRecoveryDesk &rarr;<\/a>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>An overview of how file deletion really works on Windows \u2014 across NTFS, FAT32 and exFAT \u2014 what TRIM and quick formats do to your odds, and how signature-based carving recovers content when the metadata is gone. With DeepRecoveryDesk to put it into practice.<\/p>\n","protected":false},"author":1,"featured_media":54,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,2],"tags":[],"class_list":["post-53","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-windows"],"_links":{"self":[{"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/posts\/53","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/comments?post=53"}],"version-history":[{"count":1,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/posts\/53\/revisions"}],"predecessor-version":[{"id":55,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/posts\/53\/revisions\/55"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/media\/54"}],"wp:attachment":[{"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/media?parent=53"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/categories?post=53"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/backendside.com\/blog\/wp-json\/wp\/v2\/tags?post=53"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}