Writes an array of Strings to a file, one line per String. By default, this file is saved to the sketch's folder. This folder is opened by selecting "Show Sketch Folder" from the "Sketch" menu. Alternatively, the file can be saved to any location on the computer by using an absolute pat
(String filename, String[] data)
| 7131 | * @see PApplet#saveBytes(String, byte[]) |
| 7132 | */ |
| 7133 | public void saveStrings(String filename, String[] data) { |
| 7134 | saveStrings(saveFile(filename), data); |
| 7135 | } |
| 7136 | |
| 7137 | |
| 7138 | /** |
nothing calls this directly
no test coverage detected