📜  什么是 $_.FullName in powershell - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:24.748000             🧑  作者: Mango

代码示例1
Get-ChildItem -Path C:\Windows | ForEach-Object {
    $_  # this references the entire object returned.

    $_.FullName  # this refers specifically to the FullName property
}