List specific files in subfolder and do something

PHOTO EMBED

Tue Mar 09 2021 10:12:31 GMT+0000 (Coordinated Universal Time)

Saved by @vbesse

Get-ChildItem -Path $FilePath -Filter $FilterToApply -Recurse | % {
  # Do something on $_
}
content_copyCOPY