You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see. Rather than adding default overwrite = true, I would prefer overwrite=false to make it having same behavior as before.
You can open PR for this. Great thanks~
I like (and use) this lib.
I'd prefer the overwrite of the config file to be the default, as usually one just reads, updates, and saves settings.
inline static void write(..., const bool overwrite=true) {...
i
f (!overwrite) {
if (struct stat buf; stat(filepath.c_str(), &buf) == 0) {
throw std::runtime_error("file: " + filepath + " already exist.");
}
} else {
system(("rm -rf " + iniFileName).c_str());
}
The text was updated successfully, but these errors were encountered: