MCPcopy Index your code
hub / github.com/benfry/processing4 / createPath

Method createPath

core/src/processing/core/PApplet.java:7344–7346  ·  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

7342 * may not actually exist.
7343 */
7344 static public void createPath(String path) {
7345 createPath(new File(path));
7346 }
7347
7348
7349 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