MCPcopy Index your code
hub / github.com/processing/processing / createPath

Method createPath

core/src/processing/core/PApplet.java:8154–8156  ·  view source on GitHub ↗

Takes a path and creates any in-between folders if they don't already exist. Useful when trying to save to a subfolder that may not actually exist.

(String path)

Source from the content-addressed store, hash-verified

8152 * may not actually exist.
8153 */
8154 static public void createPath(String path) {
8155 createPath(new File(path));
8156 }
8157
8158
8159 static public void createPath(File file) {

Callers 5

saveMethod · 0.95
createWriterMethod · 0.95
createOutputMethod · 0.95
saveStreamMethod · 0.95
savePathMethod · 0.95

Calls 2

getParentMethod · 0.45
printlnMethod · 0.45

Tested by

no test coverage detected