(final String path)
| 900 | } |
| 901 | |
| 902 | private static void deleteFileIfEmpty(final String path) { |
| 903 | final File file = new File(path); |
| 904 | if (file.length() <= 0) { |
| 905 | file.delete(); |
| 906 | } |
| 907 | } |
| 908 | |
| 909 | /** |
| 910 | * Respond to a query that wants the output in ASCII. |