Hey, I am new to PowerApps and I currently try to upload Items from a collection to different folders depending on their attributes.
The idea is simple: You navigate to your preferred folder (the folder structure is cloned from sharepoint) and take a picture. The picture, the path you took and some other stuff is saved in a collection. When satisfied you can click "upload" and all records in the collection will get upload to their respective folder.
I implemented the navigation method but now im stuck. I tried to do it with flow, which neither throws an error nor does it work.

This is my code in powerApps.
ForAll(
colFotos;
RespectiveFolderUpload.Run(
DisplayName;
ProjectFolders.Selected.Name;
LevelFolders.Selected.Name;
RoomDropdownSelect.Selected.Name;
{
Name: DisplayName;
Autor: User().FullName;
Datum: Now();
Standort: Location.name;
Bild: Value
}
)
)
Does anyone have an idea how to do this?
Thanks in advance!