saveTable() to another absolute file location

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?

Tagged:

Answers

Sign In or Register to comment.