Create a temporary folder that includes the sketch's name in its title.
()
| 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 | /** |
no test coverage detected