VB.NET 写TXT文件

前端之家收集整理的这篇文章主要介绍了VB.NET 写TXT文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Dim filepath As String = "c://test.txt"
If Not System.IO.File.Exists(filepath) Then
System.IO.File.Create(filepath)
End If
' System.IO.File.OpenWrite(filepath)
My.Computer.FileSystem.WriteAllText(filepath,"hello world",True)

原文链接:https://www.f2er.com/vb/262401.html

猜你在找的VB相关文章