gpt4 book ai didi

.net - 在 VB.NET 中获取 CD 盘符

转载 作者:可可西里 更新时间:2023-11-01 14:07:10 26 4
gpt4 key购买 nike

我正在使用以下代码获取计算机上每个驱动器的盘符列表。我想从此列表中获取 CD 驱动器的盘符。如何检查?

我用来获取列表的代码如下:

Form.Load 事件中:

    cmbDrives.DropDownStyle = ComboBoxStyle.DropDownList
Dim sDrive As String, sDrives() As String

sDrives = ListAllDrives()

For Each sDrive In sDrives

Next
cmbDrives.Items.AddRange(ListAllDrives())

...

Public Function ListAllDrives() As String()
Dim arDrives() As String
arDrives = IO.Directory.GetLogicalDrives()
Return arDrives
End Function

最佳答案

经过测试,并在我的计算机上返回了正确的结果:

Dim cdDrives = From d In IO.DriveInfo.GetDrives() _
Where d.DriveType = IO.DriveType.CDRom _
Select d

For Each drive In cdDrives
Console.WriteLine(drive.Name)
Next

当然假设是 3.5,因为它使用的是 LINQ。要填充列表框,请将 Console.WriteLine 更改为 ListBox.Items.Add。

关于.net - 在 VB.NET 中获取 CD 盘符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5281202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com