91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用VB.NET文件夾操作

發布時間:2021-11-03 14:14:00 來源:億速云 閱讀:441 作者:小新 欄目:編程語言

小編給大家分享一下如何使用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文件夾操作”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和平区| 乐安县| 嘉鱼县| 德安县| 周至县| 丰顺县| 邳州市| 颍上县| 漠河县| 瓮安县| 汝阳县| 松桃| 德清县| 莎车县| 曲阜市| 连江县| 宜州市| 邯郸县| 茶陵县| 道孚县| 民乐县| 苗栗市| 赤城县| 湖口县| 祁门县| 潜山县| 丹阳市| 洪洞县| 临潭县| 永仁县| 沈丘县| 新绛县| 北海市| 徐水县| 大厂| 永顺县| 闽清县| 治多县| 徐闻县| 尚志市| 宝兴县|