Hello,
I have a basic flow which will trigger when a file is modified in a One drive folder and this is working fine but I'm wondering if there is a way to have this only applying to a certain file in the folder.
I have tried using the 'Get file metadata' action and using a condition with the display name to try and identify the file but this just produces a false result.
Any help would be much appreciated.
Solved! Go to Solution.
You can do that using a trigger condition. The trick is that the filename is encoded in the trigger. You need to run it at least once without the trigger condition to get the encoded file name for that specific file. Then you can use the following trigger condition. (RG9jdW1lbnQxLmRvY3g= is the encoded name for the file I used for testing.)
@equals(triggerOutputs()?['headers/x-ms-file-name-encoded'],'RG9jdW1lbnQxLmRvY3g=')
You can do that using a trigger condition. The trick is that the filename is encoded in the trigger. You need to run it at least once without the trigger condition to get the encoded file name for that specific file. Then you can use the following trigger condition. (RG9jdW1lbnQxLmRvY3g= is the encoded name for the file I used for testing.)
@equals(triggerOutputs()?['headers/x-ms-file-name-encoded'],'RG9jdW1lbnQxLmRvY3g=')
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
25 | |
23 | |
23 | |
23 | |
17 |
User | Count |
---|---|
57 | |
39 | |
37 | |
29 | |
28 |