我正在尝试使用这行代码映射驱动器号,这将为我提供从 d 到 z 可用的驱动器列表。
ls function:[d-z]: -n|?{!(test-path $_)}
然后我想从列表中选择最后一个字母,而不是随机的。我该怎么做呢?Powershell 新手,感谢您的帮助。
我正在尝试使用这行代码映射驱动器号,这将为我提供从 d 到 z 可用的驱动器列表。
ls function:[d-z]: -n|?{!(test-path $_)}
然后我想从列表中选择最后一个字母,而不是随机的。我该怎么做呢?Powershell 新手,感谢您的帮助。
您可以Select-Object -Last 1
在该管道的末尾使用。
如果您寻找更冗长但(在我看来)可读性改进的版本:
# Get all drives which are used (unavailable)
# Filter for the "Name" property ==> Drive letter
$Drives = (Get-PSDrive -PSProvider FileSystem).Name
# Create an array of D to Z
# Haven't found a more elegant version...
$Letters = [char[]]([char]'D'..[char]'Z')
# Filter out, which $Letters are not in $Drives (<=)
# Again, filter for their letter
$Available = (Compare-Object -ReferenceObject $Letters -DifferenceObject $Drives | Where {$_.SideIndicator -eq "<="}).InputObject
# Get the last letter
$LastLetter = $Available[-1]
你可以从列表的后面开始,然后往上走。
最后一项:倒数$array[-1]
第二项:$array[-2]
以此类推。
尝试这个:
ls function:[d-z]: -n|?{!(test-path $_)} | Select-Object -Last 1
另一个不需要尝试来自 DZ 的所有路径的选项是解析Get-Psdrive
. 这是一个例子:
$lettersInUse = Get-Psdrive | ? { $_.Name.Length -eq 1 } | % { $_.Name }
$lastDriveLetter = [Char]'Z'
while ($lettersInUse -contains $lastDriveLetter) {
$lastDriveLetter = [Char]($lastDriveLetter - 1)
}
$lastDriveLetter
如果是数组
$newArray = @(git tag --list)
$lastmember = $newArray[$newArray.Count – 1]
如果你有 list
$newArray | 选择对象-Last 1