diff --git a/src/main/java/de/leonhard/storage/sections/FlatFileSection.java b/src/main/java/de/leonhard/storage/sections/FlatFileSection.java index 45b6dffb..68316f3c 100755 --- a/src/main/java/de/leonhard/storage/sections/FlatFileSection.java +++ b/src/main/java/de/leonhard/storage/sections/FlatFileSection.java @@ -11,6 +11,10 @@ public class FlatFileSection implements DataStorage { protected final FlatFile flatFile; @Getter private final String pathPrefix; + + public FlatFileSection getSection(final String pathPrefix) { + return new FlatFileSection(this.flatFile, createFinalKey(pathPrefix)); + } @Override public Set singleLayerKeySet() {