Similar to createInput() (formerly openStream), this creates a Java OutputStream for a given filename or path. The file will be created in the sketch folder, or in the same folder as an exported application. If the path does not exist, intermediate folders will be created. If an exception occur
(String filename)
| 621 | * other file functions like createWriter). Who you callin' bloated? |
| 622 | */ |
| 623 | public OutputStream createOutput(String filename) { |
| 624 | return createOutput(saveFile(filename)); |
| 625 | } |
| 626 | |
| 627 | |
| 628 | static public OutputStream createOutput(File file) { |
no test coverage detected