用于“grep”,在 Powershell 中丢失

发布于 2024-12-04 06:07:56 字数 248 浏览 0 评论 0原文

假设我想测试是否有一个名为“Z”的驱动器。第一步是这样的;

Get-PSProvider |  Select-Object -Property Drives

这给我;

Drives:

...
{C, A, D, Z}
...

但是我如何继续检索驱动器并测试“Z”? 我尝试了很多无效的变体......

BR/ Christer

Suppose I want to test if there is a drive named 'Z'. First step is this;

Get-PSProvider |  Select-Object -Property Drives

This give me;

Drives:

...
{C, A, D, Z}
...

But how do I proceed to retrieve the drives and test for 'Z' ?
I have tried a lot of no-working variants....

BR/ Christer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满天都是小星星 2024-12-11 06:07:56

您可以使用 Test-Path cmdlet:

Test-Path Z:

或 Get-PSDrive cmdlet:

Get-PSDrive Z -ErrorAction SilentlyContinue

You can use the Test-Path cmdlet:

Test-Path Z:

Or the Get-PSDrive cmdlet:

Get-PSDrive Z -ErrorAction SilentlyContinue
为你拒绝所有暧昧 2024-12-11 06:07:56

尝试使用Where-Object仅选择您需要的信息:

Get-PSDrive | Where-Object { ($_.Provider -match "FileSystem") -and ($_.Name -eq "Z") }

Try using Where-Object to select just the info you need:

Get-PSDrive | Where-Object { ($_.Provider -match "FileSystem") -and ($_.Name -eq "Z") }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文