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). The target parameter can be either a String specifying a file name, or, for greater control over the fi
(String target, String source)
| 6916 | * @see PApplet#createOutput(String) |
| 6917 | */ |
| 6918 | public boolean saveStream(String target, String source) { |
| 6919 | return saveStream(saveFile(target), source); |
| 6920 | } |
| 6921 | |
| 6922 | /** |
| 6923 | * Identical to the other saveStream(), but writes to a File |
no test coverage detected