AlexandruC
AlexandruC

Reputation: 3637

In memory FAT filesystem

If a have a FAT filesystem implemented in a SDRAM memory block(on a blackfin 537 board) how could I write a file to that memory(file system)?

Upvotes: 2

Views: 965

Answers (1)

MSalters
MSalters

Reputation: 179779

The easiest solution is to install a ram disk driver (which makes the RAM look like a block device) and a FAT driver (which will interpret the RAM blocks as a FAT file system). You can now use the regular std::fstream functions.

Upvotes: 1

Related Questions