Yes, this is possible, but not by “looping” all folders daily.
Recommended (scalable) approach
Use event‑based tracking, not folder scanning.
How it works
Trigger:
Use SharePoint – When a file is created or modified (properties only) at the document library root.
Capture metadata:
From the trigger you already get:
- File path
- Folder name (project folder)
- Modified date
Store results:
Write the folder name (or derive it from the path) into:
- A SharePoint list, or
- An array variable (grouped by date)
Daily email:
Use a scheduled flow to:
- Get that day’s entries
- De‑duplicate folder names
- Email the list to yourself
This scales
No performance limits hit
No 400‑folder loops
❌ What not to do
Loop through all folders daily (Get files (recursive))
Nested “Apply to each” across 400+ folders
➡️ This is slow, expensive, and will hit flow limits.
Final verdict
Yes, this is absolutely possible. The correct pattern is to track file changes using the SharePoint “file created or modified” trigger, capture the parent folder name, store it, and send a daily summary email. Avoid scanning folders, use event‑based tracking instead.
✅ If this answer helped resolve your issue, please mark it as Accepted so it can help others with the same problem.
👍 Feel free to Like the post if you found it useful.