( begin auto-generated from saveStream.xml ) Save the contents of a stream to a file in the sketch folder. This is basically saveBytes(blah, loadBytes()) , but done more efficiently (and with less confusing syntax). When using the targetFile parameter, it writes to a Fi
(String target, String source)
| 7704 | * @see PApplet#createOutput(String) |
| 7705 | */ |
| 7706 | public boolean saveStream(String target, String source) { |
| 7707 | return saveStream(saveFile(target), source); |
| 7708 | } |
| 7709 | |
| 7710 | /** |
| 7711 | * Identical to the other saveStream(), but writes to a File |
no test coverage detected