2020年5月24日 星期日

vb.net 如果檔案不存在並創立 [Create File if not Exist]


1
2
3
4
5
6
Imports System.IO

 Dim strPath As String = "C:\PgBot.LA"
        If File.Exists(strPath) = False Then
            File.Create(strPath)
        End If

沒有留言:

張貼留言