gpt4 book ai didi

powershell - 在 PowerShell 中连接到 ForEach-Object

转载 作者:行者123 更新时间:2023-12-04 02:03:25 26 4
gpt4 key购买 nike

这个问题不太可能对任何 future 的访客有帮助;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于互联网的全局受众。如需帮助使这个问题更广泛适用,visit the help center .




8年前关闭。




我试图让它通过目录递归,并且只包含 .pdf文件。然后返回3个最近修改的.pdf 's,并将它们的每个(完整)文件名粘贴到它们各自的变量中。

到目前为止,这是我的代码 -

$Directory="C:\PDFs"
Get-ChildItem -path $Directory -recurse -include *.pdf | sort-object -Property LastWriteTime -Descending | select-object -First 3 | ForEach-Object
{
Write-Host -FilePath $_.fullname
}

但是,当我运行脚本时,它要求我为脚本的 ForEach 部分提供参数 - 这让我得出结论,要么命令没有按照应有的方式进行管道传输,要么命令没有使用该命令适本地。

最佳答案

删除 enterforeach-object :

$Directory="C:\PDFs"
Get-ChildItem -path $Directory -recurse -include *.pdf | sort-object -Property LastWriteTime -Descending | select-object -First 3 | ForEach-Object {
Write-Host -FilePath $_.fullname }

您的代码中有一个错字:
**    Get-ChildItem =path  **

关于powershell - 在 PowerShell 中连接到 ForEach-Object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14503733/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com