Implements the other cross-platform headache of opening a folder in the machine's native file browser.
(File file)
| 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 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
no test coverage detected