vb.net 获取目录下文件夹名不包括隐藏文件夹

2024-11-30 11:37:58
推荐回答(2个)
回答1:

Vb.net获取某个目录下文件夹名称(不包含隐藏文件夹)实现代码如下:

Dim dir As New DirectoryInfo("D:\")
        For Each d As DirectoryInfo In dir.GetDirectories
            ComboBox1.Items.Add(d.Name)
        Next
dim finfo as new fileinfo(d.name)
 if (finfo.attributes and FileAttributes.Hidden)<>FileAttributes.Hidden then
      ComboBox1.Items.Add(d.Name)
end if

回答2:

dim finfo as new fileinfo(d.name)
if finfo.attributes<>FileAttributes.Hidden then
ComboBox1.Items.Add(d.Name)
end if