002集—创建文件夹—VB.NET

VB.NET创建文件夹方法如下:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Try
        If Directory.Exists(TextBox1.Text) Then
            MsgBox("此目录存在")
            Return
        End If
        Dim di As DirectoryInfo = Directory.CreateDirectory(TextBox1.Text)
        MsgBox("创建成功")
    Catch ex As Exception
        MsgBox("文件异常", ex.ToString)
    End Try
End Sub

由下图可知,已创建新目录成功

相关推荐
九鼎科技-Leo6 小时前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net
九鼎科技-Leo9 小时前
什么是 ASP.NET Core?与 ASP.NET MVC 有什么区别?
windows·后端·c#·asp.net·mvc·.net
.net开发9 小时前
WPF怎么通过RestSharp向后端发请求
前端·c#·.net·wpf
九鼎科技-Leo13 小时前
在 C# 中,ICollection 和 IList 接口有什么区别?
windows·c#·.net
时光追逐者13 小时前
C#/.NET/.NET Core学习路线集合,学习不迷路!
开发语言·学习·c#·asp.net·.net·.netcore·微软技术
Crazy Struggle16 小时前
.NET 全功能流媒体管理控制接口平台
.net·开源项目·流媒体
.net开发16 小时前
WPF使用prism框架发布订阅实现消息提示
c#·.net·wpf
慧都小妮子21 小时前
FastReport将停止 .NET Framework 上的 WebReport 更新
.net·报表控件·fastreport
九鼎科技-Leo1 天前
在 C# 中,如何实现观察者模式?
观察者模式·c#·.net