Indicates if the specified string points to an existing file. @param input string @return return result of check
(final String input)
| 170 | * @return return result of check |
| 171 | */ |
| 172 | protected static boolean isFile(final String input) { |
| 173 | final IO io = IO.get(input); |
| 174 | return !(io instanceof IOContent) && io.exists() && !io.isDir(); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Indicates if this is a local client. |