|
@@ -20,7 +20,6 @@ package org.apache.hadoop.hdfs.tools.offlineImageViewer;
|
|
import com.google.common.base.Preconditions;
|
|
import com.google.common.base.Preconditions;
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.collect.Lists;
|
|
import com.google.common.collect.Lists;
|
|
-import org.apache.commons.io.FileUtils;
|
|
|
|
import org.apache.hadoop.conf.Configuration;
|
|
import org.apache.hadoop.conf.Configuration;
|
|
import org.apache.hadoop.fs.Path;
|
|
import org.apache.hadoop.fs.Path;
|
|
import org.apache.hadoop.fs.permission.PermissionStatus;
|
|
import org.apache.hadoop.fs.permission.PermissionStatus;
|
|
@@ -298,7 +297,8 @@ abstract class PBImageTextWriter implements Closeable {
|
|
LevelDBMetadataMap(String baseDir) throws IOException {
|
|
LevelDBMetadataMap(String baseDir) throws IOException {
|
|
File dbDir = new File(baseDir);
|
|
File dbDir = new File(baseDir);
|
|
if (dbDir.exists()) {
|
|
if (dbDir.exists()) {
|
|
- FileUtils.deleteDirectory(dbDir);
|
|
|
|
|
|
+ throw new IOException("Folder " + dbDir + " already exists! Delete " +
|
|
|
|
+ "manually or provide another (not existing) directory!");
|
|
}
|
|
}
|
|
if (!dbDir.mkdirs()) {
|
|
if (!dbDir.mkdirs()) {
|
|
throw new IOException("Failed to mkdir on " + dbDir);
|
|
throw new IOException("Failed to mkdir on " + dbDir);
|