我正在尝试为数组中的每个元素列出对象的一个属性。很好,但它们都显示在一条线上。我读过使用 $OFS 来设置分隔字符,但这也不起作用:
$filearray =@()
foreach($file in $files)
{
# There is more logic here to determine what files are included
$filearray = $filearray + $file
}
$OFS = "`r`n"
$filearray | Select Fullname