diff --git a/plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileObject.java b/plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileObject.java index 1c15fccbd74..c7f9b4963fb 100644 --- a/plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileObject.java +++ b/plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileObject.java @@ -135,6 +135,7 @@ protected void doAttach() throws HopException { } else if (isContainer(fullPath)) { if (containerExists()) { type = FileType.FOLDER; + fileSystemClient.listPaths().forEach(pi -> children.add(pi.getName())); } else { type = FileType.IMAGINARY; throw new HopException("Container does not exist: " + fullPath);