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

Method savePath

core/src/processing/core/PApplet.java:8042–8047  ·  view source on GitHub ↗

Returns a path inside the applet folder to save to. Like sketchPath(), but creates any in-between folders so that things save properly. All saveXxxx() functions use the path to the sketch folder, rather than its data folder. Once exported, the data folder will be found inside the jar file of th

(String where)

Source from the content-addressed store, hash-verified

8040 * use <TT>saveXxxx("data/blah.dat")</TT>.
8041 */
8042 public String savePath(String where) {
8043 if (where == null) return null;
8044 String filename = sketchPath(where);
8045 createPath(filename);
8046 return filename;
8047 }
8048
8049
8050 /**

Callers 5

makeGraphicsMethod · 0.95
saveMethod · 0.95
saveFrameMethod · 0.95
saveFileMethod · 0.95
saveMethod · 0.80

Calls 2

sketchPathMethod · 0.95
createPathMethod · 0.95

Tested by

no test coverage detected