有没有办法将Get-ChildItem对象存储在变量中

时间:2018-02-05 07:06:28

标签: powershell get-childitem

我正在尝试下一步:

$a = $(Get-ChildItem -Path path | Select-Object -Property creationtime, name, size )
$a.Name
$a.CreationTime
$.Size

我收到了错误消息。

当我选择单个属性时 - 没问题。

有没有办法将整个对象选择为变量$a

1 个答案:

答案 0 :(得分:0)

有一些可以想到的方法:

Get-ChildItem -Path C:\temp -OutVariable ChildItems
$ChildItems.creationtime

或者你可以使用这个:

$ChildItems = Get-ChildItem -Path C:\temp 
$ChildItems.creationtime

你应该花点时间学习Powershell的基础知识。