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

Method openFolder

app/src/processing/app/Platform.java:181–189  ·  view source on GitHub ↗

Implements the other cross-platform headache of opening a folder in the machine's native file browser.

(File file)

Source from the content-addressed store, hash-verified

179 * a folder in the machine's native file browser.
180 */
181 static public void openFolder(File file) {
182 try {
183 inst.openFolder(file);
184
185 } catch (Exception e) {
186 Messages.showWarning("Problem Opening Folder",
187 "Could not open the folder\n" + file.getAbsolutePath(), e);
188 }
189 }
190
191
192 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 4

mousePressedMethod · 0.95
SketchbookFrameMethod · 0.95
buildSketchMenuMethod · 0.95

Calls 1

showWarningMethod · 0.95

Tested by

no test coverage detected