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?
4 Answers 4
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).
-
1answered the question as asked. UPVOTED & ACCEPTED :)tony gil– tony gil02/24/2020 21:39:20Commented Feb 24, 2020 at 21:39
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.
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");
-
perfect for day-to-day solutions, thanks! UPVOTEDtony gil– tony gil02/24/2020 21:37:21Commented Feb 24, 2020 at 21:37
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.
-
1As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.01/29/2025 21:34:46Commented Jan 29 at 21:34