How to turn a string into a FileInfo in Powershell

Just cast it to System.IO.FileInfo

[System.IO.FileInfo]"C:\Users"

See also