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