( begin auto-generated from saveStrings.xml ) Writes an array of strings to a file, one line per string. This file is saved to the sketch's folder, which is opened by selecting "Show sketch folder" from the "Sketch" menu. It is not possible to use saveXxxxx() functions inside a web bro
(String filename, String data[])
| 7920 | * @see PApplet#saveBytes(String, byte[]) |
| 7921 | */ |
| 7922 | public void saveStrings(String filename, String data[]) { |
| 7923 | saveStrings(saveFile(filename), data); |
| 7924 | } |
| 7925 | |
| 7926 | |
| 7927 | /** |
nothing calls this directly
no test coverage detected