This is Windows 11 Pro (22000.2057).
Using this code:
var dir = new DirectoryInfo("E:\\Videos");
foreach (var sub in dir.GetDirectories())
{
$"'{sub.Name}'".Dump();
}
I can see why:
Attempting to navigate through explorer shows the contents of "Movies" for both folders. Trying to navigate to it through powershell shows:
How can I fix this?


