本文介绍了如何在 PowerShell 中从此数组中获取唯一值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么下面的代码返回$null
?我正在尝试仅存储唯一值.
Why is the code below returning $null
? I'm trying to store just unique values.
$DailyPathsToDelete = @("C:\temp\IMG000483\","C:\temp\IMG000483\")
$DailyPathsToDelete = Select-Object $DailyPathsToDelete -Unique
推荐答案
你可以试试:
$unique = $DailyPathsToDelete | Get-Unique
这篇关于如何在 PowerShell 中从此数组中获取唯一值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!