Changed path check per Brian's request

This commit is contained in:
Kelly Kelly 2020-08-20 10:23:02 -04:00
parent fc0f277dce
commit eb2c68616f
2 changed files with 2 additions and 2 deletions

View File

@ -391,7 +391,7 @@ public final class AppSQLiteDB {
String metaFileName) throws NoCurrentCaseException, TskCoreException, IOException {
// Do not look for metaFile if this is a carved directory
if(sqliteFile.getParentPath().contains("carvedfiles")) {
if(sqliteFile.getParentPath().equalsIgnoreCase("/$carvedfiles/")) {
return;
}

View File

@ -427,7 +427,7 @@ public class SQLiteTableReader implements AutoCloseable {
String metaFileName) throws NoCurrentCaseException, TskCoreException, IOException {
// Do not look for metaFile if this is a carved directory
if(sqliteFile.getParentPath().contains("carvedfiles")) {
if(sqliteFile.getParentPath().equalsIgnoreCase("/$carvedfiles/")) {
return;
}