I have parent asset node inside the AEM CRXDE (/content/dam/parent). inside the parent node folder multiple child nodes are there .
Using Asset API how can i iterate the child nodes.?
After that i have to read/write properties.!
Code here:-
AssetManager assetManager=resolver.adaptTo(AssetManager.class);
Asset damAsset =assetManager.getAsset("/content/dam/parent");
Inside the parent node i have multiple child nodes. ex:-
- /content/dam/parent/child1
- /content/dam/parent/child2
- /content/dam/parent/child3 I need to access and read/write properties of these nodes.!