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)
| 460 | * @param relative true return relative paths instead of absolute paths |
| 461 | */ |
| 462 | static public String[] listFiles(File folder, boolean relative) { |
| 463 | return listFiles(folder, relative, null); |
| 464 | } |
| 465 | |
| 466 | |
| 467 | static public String[] listFiles(File folder, boolean relative, |