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

Method makeTempFolder

app/src/processing/app/Sketch.java:1458–1467  ·  view source on GitHub ↗

Create a temporary folder that includes the sketch's name in its title.

()

Source from the content-addressed store, hash-verified

1456 * Create a temporary folder that includes the sketch's name in its title.
1457 */
1458 public File makeTempFolder() {
1459 try {
1460 return Util.createTempFolder(name, "temp", null);
1461
1462 } catch (IOException e) {
1463 Messages.showWarning(Language.text("temp_dir.messages.bad_build_folder"),
1464 Language.text("temp_dir.messages.bad_build_folder.description"), e);
1465 }
1466 return null;
1467 }
1468
1469
1470 /**

Callers 2

CommanderMethod · 0.80
buildMethod · 0.80

Calls 3

createTempFolderMethod · 0.95
showWarningMethod · 0.95
textMethod · 0.95

Tested by

no test coverage detected