I never know what is the correct name for a function that writes/stores/saves something in a file. When should I use save()
vs store()
vs write()
and what is the difference in meaning between those?
I guess store
is used if I write to a database, write
for text files and save
for binary data, is that correct? What about XML files?