Get-ChildItem $FilePath | Sort {$_.LastWriteTime} -Descending | where {$_.PsIsContainer} |Select {$_.Name} -First 1
但输出是:
$_.Name
Username
我想要得到的输出是:
Username
我尝试通过以下方式格式化输出:
(Get-ChildItem $FilePath | Sort {$_.LastWriteTime} -Descending | where {$_.PsIsContainer} |Select {$_.Name} -First 1).name
但我不确定为什么它不起作用。
谢谢