|
|
@@ -109,7 +109,8 @@ public class FileUtils {
|
|
|
if (lowerName.endsWith(".shp") || lowerName.endsWith(".dbf") || lowerName.endsWith(".prj") || lowerName.endsWith(".qix") || lowerName.endsWith(".shx")) {
|
|
|
String baseName = fileName.substring(0, fileName.lastIndexOf('.'));
|
|
|
String ext = fileName.substring(fileName.lastIndexOf('.') + 1).toLowerCase();
|
|
|
- groupedFiles.computeIfAbsent(baseName, k -> new HashMap<>()).put(ext, file.getAbsolutePath());
|
|
|
+ groupedFiles.computeIfAbsent(baseName, k -> new HashMap<>()).put(ext, file.getPath());
|
|
|
+ //groupedFiles.computeIfAbsent(baseName, k -> new HashMap<>()).put(ext, file.getAbsolutePath());
|
|
|
}
|
|
|
}
|
|
|
}
|