VB.NET 非隐藏文件提取
时间: 2023-02-27 19:08:03 浏览: 97
如果你想在 VB.NET 中提取非隐藏文件,可以使用下面的代码:
```
Imports System.IO
Module Module1
Sub Main()
Dim sourcePath As String = "C:\SourceFolder"
Dim targetPath As String = "C:\TargetFolder"
For Each file As String In Directory.GetFiles(sourcePath)
If (File.GetAttributes(file) And FileAttributes.Hidden) = 0 Then
File.Copy(file, Path.Combine(targetPath, Path.GetFileName(file)))
End If
Next
End Sub
End Module
```
这段代码会扫描源文件夹,提取其中所有非隐藏文件,并将它们复制到目标文件夹。
阅读全文