您好,登錄后才能下訂單哦!
小編給大家分享一下如何使用VB.NET文件夾操作,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
VB.NET文件夾操作代碼:
'文件夾復制 Function CopyDir()Function CopyDir(ByVal sourcePath As String, ByVal targetPath As String) As Boolean Try '檢查目標目錄是否以目錄分割字符結束,不是則添加 If Right(targetPath, 1) <> "" Then targetPath += "" '判斷目標目錄是否存在,不存在則新建 If Not Directory.Exists(targetPath) Then Directory.CreateDirectory(targetPath) ' 得到源目錄的文件列表,該里面是包含文件以及目錄路徑的一個數組 Dim fileList As String() = Directory.GetFileSystemEntries(sourcePath) '遍歷所有的文件和目錄 For Each filepath As String In fileList '目錄處理,遞歸 If (Directory.Exists(filepath)) Then CopyDir(filepath, targetPath + Path.GetFileName(filepath)) Else '復制文件 File.Copy(filepath, targetPath + Path.GetFileName(filepath), True) End If Next Return True Catch ex As Exception Return False End Try End Function '文件夾刪除 Function DelDir()Function DelDir(ByVal targetPath As String) As Boolean Try '檢查目標目錄是否以目錄分割字符結束,不是則添加 If Right(targetPath, 1) <> "" Then targetPath += "" '得到源目錄的文件列表,該里面是包含文件以及目錄路徑的一個數組 Dim fileList As String() = Directory.GetFileSystemEntries(targetPath) '遍歷所有的文件和目錄 For Each filepath As String In fileList '目錄處理,遞歸 If (Directory.Exists(filepath)) Then DelDir(targetPath + Path.GetFileName(filepath)) Else '刪除文件 File.Delete(targetPath + Path.GetFileName(filepath)) End If Next '刪除文件夾 System.IO.Directory.Delete(targetPath, True) Return True Catch ex As Exception Return False End Try End Function
看完了這篇文章,相信你對“如何使用VB.NET文件夾操作”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。