Hi @Galikin ,
Do you want to transfer or copy a folder that meets certain criteria into a subsite?
- The date the folder was created is 60 days older than the Certain date.
- The status of the folder has been marked as Complete. The type of this field is inferred to be Choice type.
You could configure your Flow as follows:
- First use Get files action to get all the files and folders.
- Configure Condition, you need to use four conditions to filter the folder
- Whether the current item is a folder
- Whether the Status value is Complete
- Whether the folder creation date is 60 days older than the specified date
- Finally check the Folder path is the folder under the root directory
Image reference:

Expression:
formatDateTime(items('Apply_to_each')['Created'],'yyyy-MM-dd')
addDays('2019-02-13',60,'yyyy-MM-dd')
If the above four conditions are met, the current folder can be copied to the specified subsite.

Please take a try.
Best Regards,