|
|
|
@ -31,12 +31,14 @@ public abstract class InterfaceInfoReader<T extends InterfaceInfo<?, ?>> extends
|
|
|
|
|
List<Path> paths = getReceivedFilePaths(path -> {
|
|
|
|
|
String str = path.toString();
|
|
|
|
|
|
|
|
|
|
for (String tail: tails)
|
|
|
|
|
for (String tail: tails) {
|
|
|
|
|
if (str.contains(interfaceID) && str.contains(tail))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (paths.isEmpty()) return Collections.emptyList();
|
|
|
|
|
|
|
|
|
|
List<FileStatus> fileStatus = processReceived(paths);
|
|
|
|
|