public static String absolutePath(Path p) { if (p == null) return ""; StringBuilder sb = new StringBuilder(); Path parentPath = p.getParent(); if (parentPath == null) return "/"; sb.append(absolutePath(parentPath)); if (sb.length() > 1) sb.append("/"); sb.append(p.getName()); return sb.toString(); }
/** * open a file for writing * * @param hdfsPath !null path - * @return !null stream */ @Override public OutputStream openFileForWrite(final Path src) { if (isRunningAsUser()) { return super.openFileForWrite(src); } if (true) throw new UnsupportedOperationException("Fix This"); // ToDo final FileSystem fs = getDFS(); try { Path parent = src.getParent(); guaranteeDirectory(parent); return FileSystem.create(fs, src, FULL_FILE_ACCESS); } catch (IOException e) { throw new RuntimeException(e); } }