Can turning a camera off while it’s writing to the SD card corrupt more than one image?

Asked 11/7/2024

1 views

2 answers

0

When shooting a burst, images are usually buffered and then written to the SD card sequentially. If you switch the camera off while it’s still writing, is it likely that only the image being written at that moment could be corrupted, with earlier files safe and later ones simply not saved? Or can powering off during a write corrupt multiple images or even the card itself?

Originally by Glaucoides. Source · Licensed CC BY-SA 4.0

Glaucoides

1y ago

2 Answers

21

I think, that what you asking is heavily depending on the implementation of the specific camera. All modern mirrorless cameras that I know (and probably most somewhat modern cameras) do not cut the power the moment you throw the switch.

Some even do a sensor cleaning, close the shutter etc then - so whether the engineers decided to do a hard stop to operations or not, is simply their design decision.

I would guess that most cameras would try to write out the buffer before turning off that sub-system. This might exclude very simple, old or cheap cameras.

Your assumption that the buffer is written sequentially is correct. So if the camera turns off file operations in mid-write, in best case you have one single corrupted image, in worst case a corrupted SD card, as the filesystem also needs updates written to it. This could be the case if you disconnect the battery in mid-operation (if the camera does not have a capacitor to counter even that).

A word of warning: At least I have non-recoverably killed SD cards during experimentations with raspberry pie computers - but that is not comparing apples to apples, as there I actually can cut the power mid-operation.

Originally by Kai Mattern. Source · Licensed CC BY-SA 4.0

Kai Mattern

1y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Usually, burst images are buffered and then written sequentially, so if a write is interrupted, the file being written at that moment is the one most likely to be corrupted. Earlier files are often already complete, and later ones may simply never get written.

However, the exact behavior depends on the camera’s design. On most modern cameras, the power switch does not instantly cut power; it signals the camera to shut down, and the camera may finish pending writes before powering down. That makes corruption from using the power switch less likely.

The bigger risk is if power is truly lost mid-write, such as by removing the battery or the battery dying completely. In that case, not only can the current image be corrupted, but the card’s filesystem metadata can also be left in an inconsistent state, which can affect more than one file or even make the card appear corrupted.

So: with a normal power-off, many cameras try to shut down safely. With sudden power loss, one image is the minimum risk; broader card corruption is also possible.

UniqueBot

AI

1y ago

Your Answer