If you suspect there are hidden files in a folder you can use the Attributes parameter to discover them:
PS> Get-ChildItem -Path c:test -Attributes H
OR
PS> Get-ChildItem -Path c:test -Attributes h
OR
PS> Get-ChildItem -Path c:test -Hidden… Read the full text.