Hello, @Podili Vijay - Thanks for reaching out & posting on the MS Q&A!
I doubt it'll work but could you try using the @or function like the one below?
@or(equals(triggerBody()?['folderPath'], '/path1'), equals(triggerBody()?['folderPath'], '/path2'))
The reason why I'm doubtful is because of the following statement on the doc:
This operation triggers a flow when one or more files are added or modified in a folder. The trigger does not fire if a file is added/updated in a subfolder. If it is required to trigger on subfolders, multiple triggers should be created.
The trigger conditions might come in handy for use cases where the workflow is watching for files with specific extensions or naming conventions, etc.