在本文所介绍的技巧中,我们将检测VB.NET 如何与文件系统进行作用。
为了能够操作文件系统,我们需要用到System.IO命名空间。
判断文件是否存在
在此示例中,我们定义了sFileName变量保存文件名和地址。
然后新建FileInfo类示例,此类接受完整文件路径作为参数。
Private Function DetermineIfFileExists() As Integer
Dim sFileName As String
sFileName = "C:/text1.txt"
Dim fFile As New FileInfo(sFileName)
If Not fFile.Exists Then
MessageBox.Show("File Not Found")
Else
MessageBox.Show("File Found. File was created on: " & fFile.CreationTime)
End If
End Function
判断路径是否存在
我们定义了sDirName变量保存名字和路径的地址。
然后新建DirectoryInfo类示例,此类接受全路径名作为参数,接下来使用Exists属性判断路径是否存在。
如果存在,则显示其最近一次被访问的日期和时间;如果不存在,则给出不能定位路径的信息。
Private Function DetermineIfDirectoryExists() As Integer
Dim sDirName As String
sDirName = "C:/temp"
Dim dDir As New DirectoryInfo(sDirName)
If Not dDir.Exists Then
MessageBox.Show("Directory Not Found")
Else
MessageBox.Show("Directory Found. Directory was last accessed on: " & dDir.LastAccessTime)
End If
End Function