文件夹的新建、删除、重命名
文件夹中子文件和目录的统计
文件的新建及显示文件内容
文件在local和remote间的相互复制
定位文件在HDFS中的位置,以及副本存放的主机
HDFS资源使用情况
1. 新建文件夹
public void mkdirs(String folder) throws IOException { Path path = new Path(folder); FileSystem fs = FileSystem.get(URI.create(hdfsPath), conf); if (!fs.exists(path)) { fs.mkdirs(path); System.out.println("Create: " + folder); } fs.close(); }