public static byte[] input(String fileName) { try { return input(Files.newInputStream(IO.path(fileName))); } catch (IOException e) { return Exceptions.handle(byte[].class, e); } }
@Override public Path apply(String s) { return IO.path(s); }