cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
kelvin-lkh
Helper I
Helper I

Auto Send Email if the File in the List not yet upload to the designated folder

Hi All,

 

I plan to create a folder in the sharepoint for users to upload the files which the name of the file is already pre-fixed. I will also create a list in the sharepoint which the list contains all the files name I am expecting the users to upload the to the folder.

 

How do I set up the flow that each of the items in the list will look up to the file name in the folder and trigger the email to remind the user to upload if the file still not yet upload to the sharepoint folder?

 

Below is the list created with 3 files name

kelvinlkh_2-1668012524706.png

 

One of the file name has already been upload to the designated folder. so the flow will trigger to auto email to the other 2 emails which the files has not yet uploaded.

kelvinlkh_1-1668011945195.png

 

Appreciate for the coaching in advance.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

@kelvin-lkh as discussed offline, i think we resolved your issue, following issues you had in flow:

1. Incorrect document library selected in Get Files

2. You were checking length of items returned by Get Items instead of check length of items returned by Get Files

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

View solution in original post

25 REPLIES 25
annajhaveri
Community Champion
Community Champion

@kelvin-lkh  is this one time action or recurring. If recurring you can create scheduled flow, then add Get Items action to get items from List, loop through output of get items using apply to each action. Then add Get files (properties only), with filter query Name eq '<select filename from list item dynamic content>.xlsx', then in condition action check length of files returned by Get files, if its zero then the file with that name doesnt exists.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

I have tried but fail at the Get Files property section. Can I know if the issue is from the 'filter query' under Get Files?

 

 

kelvinlkh_0-1668101488147.png

 

kelvinlkh_1-1668101514319.png

 

@kelvin-lkh  please remove angle brackets <> from your filter query, i had just put it to show it as a placeholder.  Also remove the words filter query from the filter query parameter value. It should be Name eq 'Current Item. xlsx' where current item is selected from dynamic content, i think you need to select the column name instead of Current Item.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

 

 

@annajhaveri Thanks for your prompt reply. However, the test not successful after I have changes according to your previous comment. The failure due to the Name does not exist. The 'Name' should be the name of the files in the folder which are retrieve with the 'Get files' function. Just wonder what goes wrong again?

 

 

kelvinlkh_0-1668159802231.png

 

@kelvin-lkh  i am sorry i gave you incorrect column name, please use FileLeafRef instead of Name in filter query 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

it is working after I use the FileLeafRef as column name. However, when it comes to condition, I receive all 3 items by email as 'submitted' but I am expecting 1 item as 'submitted' and 2 items 'not yet submitted' as I only create 1 file in the sharepoint out of 3 items in the list as shown below.

 

Can I know whether the issue is with the parameter under the condition set?

 

 

 

kelvinlkh_0-1668470769576.png

 

kelvinlkh_1-1668470804836.png

 

 

kelvinlkh_2-1668470849426.png

 

@kelvin-lkh instead of the value in left side of condition you need to use below expression:

length(outputs('Get_items')?['body/value'])
Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri  I have used the expression provided in the condition but the outcome are all the 3 items in the list the files have already submitted because the 'yes' condition doesn't satisfy.

 

is there anything wrong in my input shown below?

 

kelvinlkh_1-1668504436846.png

 

 

kelvinlkh_0-1668504364372.png

 

@kelvin-lkh you need to put the expression as shown in below screenshot, from Dynamic contents -> Expressions

annajhaveri_0-1668506149220.png

 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

 

@annajhaveri I still get the same outcome even after I change it to the expression.

 

kelvinlkh_0-1668521173039.png

 

kelvinlkh_1-1668521283277.png

 

 

@kelvin-lkh  can you please expand the Get Files action in flow run and share the screenshot of it?

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri  Pls find below the get files action, Documents in sharepoint, Get item action and the backlog report list in sharepoint.

 

 

kelvinlkh_0-1668524942907.png

 

kelvinlkh_1-1668524991204.png

 

 

kelvinlkh_2-1668525014553.png

 

kelvinlkh_4-1668525068644.png

 

 

@kelvin-lkh  thanks for screenshot. Sorry to ask again, can you please share the screenshot of the flow run with Get Files action. Same screenshot as below but with Get Files expanded:

annajhaveri_0-1668529447438.png

 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri Thanks for being patient with me. Pls find below whether the flow run with Get Files action you are asking for.

 

 

kelvinlkh_1-1668530888934.png

 

 

 

kelvinlkh_0-1668530839512.png

 

@kelvin-lkh  Okay so for 1st item there is a file that exists with that name in the list, so condition is resulting into false, which i think is correct. Can you check for other two items, in apply to each what is the result? To make it easier for time being, i suggest to add compose action above the condition action and add that length expressions that is used in condition in compose action, so that you know what length are you getting for all three items.

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri  Below is the result and the order of the compose I have added in. Not sure if I add the compose correctly and how does it tell why the flow doesn't product the outcome we are expecting?

 

kelvinlkh_0-1669107304502.png

 

 

kelvinlkh_1-1669107351230.png

 

 

@kelvin-lkh Compose action position looks correct, in your previous screenshot you had limit entries to folder Documents/Q1, do you need to do that, as your latest screenshot does not have it

annajhaveri_0-1669112622243.png

 

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

@annajhaveri  it still yield the same result even after I have put back the limit entries to folder Documents/Q1. What should I try next in order to find out what goes wrong with the flow?

 

 

 

kelvinlkh_0-1669132091092.png

 

@kelvin-lkh  can you please take a look and share, what is the value in compose action after providing the folder in Get Files

Regards,
Anna Jhaveri

If I have answered your question, please mark the post as Solved to help other users to identify the correct answer
If you like my response, please give it a Thumbs Up.

Helpful resources

Announcements
Power Automate News & Announcements

Power Automate News & Announcements

Keep up to date with current events and community announcements in the Power Automate community.

Community Calls Conversations

Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Automate Community Blog

Power Automate Community Blog

Check out the latest Community Blog from the community!

Top Solution Authors
Top Kudoed Authors
Users online (3,488)