Thanks for the reply, Sorry I didn't explain properly.
Do you know how to do this in code?
I have code for listing a directory outside of a jar file but I can't list the files inside it like this.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| List<String> contents = new ArrayList<String>(); File dir = new File(_strDirectory); String[] children = dir.list(); if (children != null) { for (int i=0; i<children.length; i++) { String filename = children[i]; if (!filename.startsWith(".")) contents.add(filename); } } return contents; |