This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Transactional FTA File System

Hello;

We need a Transactional FAT File System for a Flash Memory and for a SD Card. Any of you know a comercial or free source implementation of this?

Thanks in advance.

Parents
  • Transactional FAT File System

    I'm reasonably sure such a thing can't exist and still actually be the FAT File System. The problem being that the data structures of the FAT File System simply don't have the right layout to be handled transactionally. To append data to a file, you have to write into two or three separate places on the medium. That can't be done in a completely transaction-safe way by software.

Reply
  • Transactional FAT File System

    I'm reasonably sure such a thing can't exist and still actually be the FAT File System. The problem being that the data structures of the FAT File System simply don't have the right layout to be handled transactionally. To append data to a file, you have to write into two or three separate places on the medium. That can't be done in a completely transaction-safe way by software.

Children