I am developing a Java application with SWT and using org.eclipse.swt.widgets.FileDialog class for file input like this:
FileDialog dialog = new FileDialog(shell, SWT.OPEN);
String[] filterNames = getFilterNames(importers, isWindowsLike);
String[] filterExtensions = getFilterExtensions(importers, isWindowsLike);
dialog.setFilterNames(filterNames);
dialog.setFilterExtensions(filterExtensions);
dialog.setFilterPath(lastPath);
String selectedFileAbsolutePath = dialog.open();
This works fine except the dialog displays hidden files (those with a dot-prefix), which I would like to avoid. I did not find a solution yet. Is there a way to do this with SWT?
Thanks in advance
EDIT: The two methods i omitted are probably also of interest. I printed out the return values of the methods with Arrays.toString(String[]). Here is getFilterNames:
[Excel Files, CSV Files, All Files (*)]
getFilterExtensions in turn returns this:
[xls;xlsx, csv, *]
On windows every "*" is replaced by "*.*" as suggested by the SWT snippets on the eclipse website (http://git.eclipse.org/c/platform/eclipse.platform.swt.git/tree/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet72.java) (I already tried using the windows version, it still displayed hidden files)
[Excel Files, CSV Files, All Files (*.*)]
[xls;xlsx, csv, *.*]