码迷,mamicode.com
首页 > 移动开发 > 详细

hadoop 文件 复制 移动 FileUtil.copy

时间:2015-08-11 13:49:26      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:

FileSystem fs = FileSystem.get(conf);
Path pattern = new Path(resultViewPath + "phone*");
Path dir = new Path(dest);
if (!fs.exists(dir)) {      // 目标目录
fs.mkdirs(dir);
}
FileStatus[] status = fs.globStatus(pattern);   //  匹配正则表达式的文件集合
Path[] paths = FileUtil.stat2Paths(status);      //  转换为Path数组
for (Path i : paths) {                                  //   复制每个文件
FileUtil.copy(fs, i, fs, dir, false, conf);   // false 表示移动的时候不删除原路径文件
System.out.println(i);
}

 

hadoop 文件 复制 移动 FileUtil.copy

标签:

原文地址:http://www.cnblogs.com/agileblog/p/4720680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!