Hi
Is there a way to keep limited number of files in SharePoint folder? When new file is created in SharePoint from outlook, I would like to set a limit to 30 files so when 31st file would arrive the oldest would need to be deleted.
Thanks for your help. This works 🙂
Z
Hi @72Zib,
Yes, this would be possible by using a Get files action (order it by ID ascending) and count the length of the output. When this equals 31 you could use the identifier of the first item (since it is ordered ascending by ID) and delete that file.
Below is an example of that approach.
1. Add a Get Files (properties only action). Configure it to use your specific folder. Make sure you also use the sort ID asc.
2. Add a condition with the following expression:
length(outputs('Get_files_(properties_only)')?['body/value'])
3. Add a delete file action. Use the following expression to delete the first file.
outputs('Get_files_(properties_only)')?['body/value'][0]['{Identifier}']
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional