Changes between Version 3 and Version 4 of NCHCCloudCourse100928_3_EXE3
- Timestamp:
- Jul 21, 2011, 11:33:15 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NCHCCloudCourse100928_3_EXE3
v3 v4 33 33 FileSystem hdfs = dst_path.getFileSystem(conf); 34 34 // 檢查是否存在 35 if (hdfs.exists( dst_path)) {35 if (hdfs.exists()) { 36 36 // 有則刪除 37 hdfs.delete( dst_path, true);37 hdfs.delete(); 38 38 return true; 39 39 }else{