3

Running Arduine IDE SD DataLogger Example, my data gets appended to a txt file.

File dataFile = SD.open("datalog.txt", FILE_WRITE);
if (dataFile) {
  dataFile.println(dataString);
  dataFile.close();
}

Is there an explicit option to open the file in overwrite / append modes?

Michel Keijzers
  • 13,014
  • 7
  • 41
  • 58
tony gil
  • 378
  • 1
  • 7
  • 26

4 Answers4

4

The Arduino SD library is an Arduino wrapper of old version of SdFat library (put into utility subfolder of the SD library). This SdFat library has constants like O_READ, O_WRITE, O_APPEND.

Arduino wrapper has constants

#define FILE_READ O_READ
#define FILE_WRITE (O_READ | O_WRITE | O_CREAT | O_APPEND)

You can use the SdFa library constants in the wrapper calls.

File dataFile = SD.open("datalog.txt", O_READ | O_WRITE | O_CREAT);

Warning: not all versions of SD library bundled in different board packages have O_APPEND in #define FILE_WRITE. Even in the Arduino SD library the O_APPEND was removed some time ago and then the change was reverted, because all dataloger examples used FILE_WRITE.

Juraj
  • 18,264
  • 4
  • 31
  • 49
4

You only need to open the file with FILE_WRITE and use file.seek(EOF) to go to de end of the file. After that you can write whatever you want that will be appended to the end of the file.

File outputFile = SD.open(LOG_FILE, FILE_WRITE);
outputFile.seek(EOF);
outputFile.println("Appended to the EOF");
3

If you look in this library, you see:

File SDClass::open(const char *filepath, uint8_t mode) {

    ...

    if ((mode & (O_APPEND | O_WRITE)) == (O_APPEND | O_WRITE)) {

So you can use all these mode combinations (e.g. O_CREATE, O_APPEND, O_WRITE).

Michel Keijzers
  • 13,014
  • 7
  • 41
  • 58
1
File outputFile = SD.open(LOG_FILE, MODE);

With Arduino PCB: MODE=FILE_WRITE to append the data.

With ESP32 pcb, V 3.1.1: FILE_WRITE to overwrite the data. FILE_APPEND to append data.

Append:

File outputFile = SD.open("/LOG_FILE", FILE_APPEND);

Note:

"/LOG_FILE" for Linux, "\LOG_FILE" for Windows.

Gil Sven
  • 167
  • 8
M. B.
  • 11
  • 2