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

Method openFolder

app/src/processing/app/Platform.java:171–179  ·  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

169 * a folder in the machine's native file browser.
170 */
171 static public void openFolder(File file) {
172 try {
173 inst.openFolder(file);
174
175 } catch (Exception e) {
176 Messages.showWarning("Problem Opening Folder",
177 "Could not open the folder\n" + file.getAbsolutePath(), e);
178 }
179 }
180
181
182 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 4

actionPerformedMethod · 0.95
mousePressedMethod · 0.95
actionPerformedMethod · 0.95

Calls 1

showWarningMethod · 0.95

Tested by

no test coverage detected