我试图将参数传递给函数以执行get-childitem。似乎无法完成。此外,我无法删除自己的帖子,所以我只用对我要弄清楚的内容的基本解释将其清空。似乎我无法传递带有通配符的文件名变量。到目前为止,这里的每个答案都无济于事,因为我尝试过的所有操作都会生成一个零字节文件。
Function getFilenames($facPath,$facility,[string[]]$fileIncludes) {
gci $facPath\* -Include $fileIncludes -Recurse |
Select-Object @{ expression={$_.name}; label='FILENAME' },
@{Name='FACILITY';Expression={$facility}} |
Export-Csv -NoTypeInformation -Path $scriptPath"\filenames.txt" -Append
}
getFilenames $vPath "Building 1" $vFiles
答案 0 :(得分:0)
尝试一下!
$Include=@("ab*","cd*","ef*")
Get-Childitem -Recurse -Include $Include
答案 1 :(得分:0)
您可以将功能更新为以下内容。我删除了几个Select-Object
命令,因为您只需要一个。
Function getFilenames($facPath,$facility,[string[]]$fileIncludes) {
gci $facPath -Include $fileIncludes |
Select-Object @{ expression={$_.name}; label='FILENAME' },
@{Name='FACILITY';Expression={$facility}} |
Export-Csv -NoTypeInformation -Path "$scriptPath\filenames.txt" -Append
}
您可以按照以下方式运行它:
getFilenames "c:\folder\facilities\*" "manufacturing" "ab*","cd*","ef*"
PowerShell通过各种符号来确定字符串数组:
"string1","string2","stringx"
:以逗号分隔的列表[string[]]$stringArray
:输入或投射@("string1","string2","string3")
:数组子表达式有关使用数组的更多信息,请参见About Arrays。