📅  最后修改于: 2022-03-11 14:48:24.748000             🧑  作者: Mango
Get-ChildItem -Path C:\Windows | ForEach-Object {
$_ # this references the entire object returned.
$_.FullName # this refers specifically to the FullName property
}