File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -1017,10 +1017,13 @@ public void prepareExportFolder(File targetFolder) {
10171017 if (targetFolder != null ) {
10181018 // Nuke the old applet/application folder because it can cause trouble
10191019 if (Preferences .getBoolean ("export.delete_target_folder" )) {
1020- try {
1021- Platform .deleteFile (targetFolder );
1022- } catch (IOException e ) {
1023- e .printStackTrace ();
1020+ if (targetFolder .exists ()) {
1021+ try {
1022+ Platform .deleteFile (targetFolder );
1023+ } catch (IOException e ) {
1024+ // ignore errors/continue; likely to be ok
1025+ e .printStackTrace ();
1026+ }
10241027 }
10251028 }
10261029 // Create a fresh output folder (needed before preproc is run next)
Original file line number Diff line number Diff line change 110257 (3.2.5)
2+ X check for already-exported folders before trying to remove them
3+ X was spewing 'file not found' errors into the console
24
35
46cleaning
57X Contribution Manager does not show all libraries until filter cleared
68X https://github.com/processing/processing/issues/4840
79X fixed in 3.2.4
810
11+
912_ NVIDIA driver problems (and means to check)
1013_ https://github.com/processing/processing/issues/4853
1114
You can’t perform that action at this time.
0 commit comments