We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm trying to get a csv file saved to another file location outside of the project file for processing.
saveTable(table, "LightingData.csv");
works, but something like
saveTable(table, "C:\Users\Name\Documents\Homework\LightingData.csv");
doesn't work. Is what I'm trying to do possible? Or is there another way to get this csv file saved to another file location?
Answers
Don't use
\
to split folder names. Favor/
, which also works for Unix: :)>-https://Processing.org/reference/saveTable_.html
Thank you!