HDFS文件目录操作代码

文件夹的新建、删除、重命名

文件夹中子文件和目录的统计

文件的新建及显示文件内容

文件在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(); }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzygpx.html