开发者学堂课程【Hadoop 分布式文件系统 HDFS :文件夹删除】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/93/detail/1448
文件夹删除
目录
一.文件夹删除
二.示例
l 文件夹删除
@Test
Public void testDelete () throws IOException,
Inter ruptedException, URISyntaxException{o
// 1获取文件系统。Configuration configuration = new Configuration() ;
FileSystem fs = FileSystem.get (new
URI ("hdfs://hadoop102:9000"),configuration,atguigu") ;
// 2执行删除fs.delete (new Path("/0508/") ,true) ;
// 3关闭资源
fs.close();
l 示例
@Test
public void testDelete() throws I0Exception, InterruptedException, URISyntaxExcept ion{
// 1
获取对象Configuration conf = new Configuration();
FileSystem fs = FileSystem. get(new URI("hdfs ://hadoop102:9000"), conf," atguigu");
// 2文件删除fs .delete(new Path("/0529"), true);
// 3关闭资源
fs.close();