gpt4 book ai didi

powershell - DTE-在Powershell中读取ProjectItem.FileNames

转载 作者:行者123 更新时间:2023-12-03 00:53:42 25 4
gpt4 key购买 nike

我正在尝试在Powershell中做一些非常简单的事情,我有一个ProjectItem实例,我想读取FileNames属性的值(记录为字符串数组)。但是事实证明这是相当困难的

ForEach ($item in $scripts.ProjectItems) {
Write-Host $item.FileNames
Write-Host $item.FileNames[0]
Write-Host $item.FileNames(0)
}

因此,我的目标是在项目中移动一些文件。这3条Write-Host行的输出是
string FileNames (short) {get} 
string FileNames (short) {get}
string FileNames (short) {get}

我需要做些特殊的事情才能将其读取为数组吗?

最佳答案

当您评估.NET方法而不调用它即提供括号时,PowerShell将发出该方法的签名。尝试:

Write-Host $item.get_FileNames(0)

更新:根据OP,可以正常工作:
Write-Host $item.FileNames(0)

关于powershell - DTE-在Powershell中读取ProjectItem.FileNames,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14369504/

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