Hi @IPC_ahaas
Just wondering why you are not getting list of files from the folder 🤔 since files are present.
But there is a workaround 🙂
As i told you, the id present as output of List Folder action has %252f at beginning of Id, when i compared the id generated from list files (properties only) it does not have %252f at starting and it is working fine.
So another appraoch you can try is -


Inside the loop, use compose action to remove the first %252f using slice operation

Expression - slice(items('Apply_to_each')?['Id'],5)
Now I am using its output to get file metadata (for my usecase)

And it is working as expected.