• 0 Posts
  • 161 Comments
Joined 3 years ago
cake
Cake day: July 11th, 2023

help-circle






  • Partially true. The difference is that in Linux, when you delete a file, you’re just removing the directory entry (potentially just one of many entries that point to the same data). The filesystem doesn’t actually remove the data and reclaim space until all open handles are closed and no remaining directory entries point to the data.

    Any running processes that have the file open are able to continue to read and write that data via the handle despite the directory entry being removed, until the handle is closed.