Recursively creates a list of all files within the specified folder, and returns a list of their relative paths. Ignores any files/folders prefixed with a dot. @param relative true return relative paths instead of absolute paths
(File folder, boolean relative)
| 386 | * @param relative true return relative paths instead of absolute paths |
| 387 | */ |
| 388 | static public String[] listFiles(File folder, boolean relative) { |
| 389 | return listFiles(folder, relative, null); |
| 390 | } |
| 391 | |
| 392 | |
| 393 | static public String[] listFiles(File folder, boolean relative, |