Re: Can't ID folder to move it using OneDrive or SharePoint connectors
I would use the SharePoint Get files (properties only) action and use the Filter Query.
For this example, I have the following folder structure in OneDrive.

And my flow is:

For Get files (properties only) I've set it to include nested items and used the following for my filters.
FSObjType eq 1 and FileLeafRef eq 'CMP_SLURRY V1A SLURRY, 208L DR'
FSObjType eq 1 means only return folders (not files), and FileLeafRef refers to the actual Name of the folder (not case sensitive).
The Select is just showing some of the properties you might want to use. See output for my example below:

[
{
"ID": 133,
"Identifier": "Documents%252fAutomation%252fFolder%2b1%252fOCAPs%252fCMP_Slurry%2bV1A%2bSLURRY%252c%2b208L%2bDR",
"Full Path": "Documents/Automation/Folder 1/OCAPs/CMP_Slurry V1A SLURRY, 208L DR"
}
]