VB.net怎样保存文件保存文件的步骤为:
关闭流 , 特别是写入流
关闭并保存文件
示例代码如下:
Imports System.Windows.Forms
Imports System.IO
Imports System.Text
Sub SaveFileDemo()
'打开文件 。如果文件不存在则创建新的文件
Dim myFile As New IO.FileStream("d:\data.txt", _
FileMode.OpenOrCreate, _
FileAccess.Write)
'在文件末尾添加一行
Dim tw As New StreamWriter(myFile)
myFile.Seek(0, SeekOrigin.End)
tw.WriteLine("白刃格斗英雄连英模部队方队亮相阅兵")
'关闭流
tw.Close()
'关闭文件并保存文件
myFile.Close()
End Sub
vb.net 获取目录下文件夹名不包括隐藏文件夹Vb.net获取某个目录下文件夹名称(不包含隐藏文件夹)实现代码如下:
Dim dir As New DirectoryInfo("D:\")
For Each d As DirectoryInfo In dir.GetDirectories
ComboBox1.Items.Add(d.Name)
Next
dim finfo as new fileinfo(d.name)
if (finfo.attributes and FileAttributes.Hidden)FileAttributes.Hidden then
ComboBox1.Items.Add(d.Name)
end if
VB.NET 创建文件夹用Directory.CreateDirectory即可创建文件夹:
' 建立目录
If Not Directory.Exists("C:\负屃\"TextBox1.Text) Then '检查文件夹是否存在
Directory.CreateDirectory("C:\负屃\"TextBox1.Text)'不存在,创建文件建夹
End If
你的例子是因为少了一个"\"引起的 , 正确的如下:
Dim fsotest As New FileSystemObject
If fsotest.FileExists("C:\负屃\"TextBox1.Text) = False Then
fsotest.CreateFolder("C:\负屃\"TextBox1.Text) '这里你少了一个\
End If
MsgBox("创建成功")
VB用mkdir在当前目录建立文件夹应该是Database不存在 , 建了Database再建a就行了
【vb.netmkdir的简单介绍】If Dir(App.Path"\Database", vbDirectory) = "" Then
MkDir (App.Path"\Database")
End if
If Dir(App.Path"\Database\a", vbDirectory) = "" Then
MkDir (App.Path"\Database\a")
End if
新手关于VB.net的问题您好vb.netmkdir,在Visual Basic.NET中,是没有像这样的文件I/O操作的,一般都是通过System.IO.StreamReader和System.IO.StreamWriter类,System.IO.BinaryReader和System.IO.BinaryWriter类来读写文件以及利用My.Computer.FileSystem类读写文件,利用System.IO.Filestream类来创建文件,通过引用Microsoft Scripting Runtime来执行文件(夹)和驱动器的特殊操作,常用的是System.IO.StreamReader和System.IO.StreamWriter类 。
例如说要读取一个文件,我们可以利用System.IO.StreamReader类编写一个方法(也就是函数) , 但是首先要在当前类的开头添加一个引用 , 引用名称vb.netmkdir:System.IO,添加引用的代码如下
Imports System.IO
添加引用之后,就在当前类的内部创建方法:
Private Function ReadFile(ByVal FileURL As String) As String
Dim sr As StreamReader = New StreamReader(FileURL)
ReadFile = sr.ReadToEnd()
sr.Close()
sr = Nothing
End Function
示例说明:
该方法是一个返回String(字符串)数据的函数 , FileURL作为参数是用来存放需要访问的文件的URL,当然,要获取一个文件的URL , 就是利用这一句代码实现的:
Dim sr As StreamReader = New StreamReader(FileURL)
当获取了URL之后,就要对文件进行读取操作了,然后将读取的结果返回给方法:
ReadFile = sr.ReadToEnd()
读取文件完毕之后,要对文件执行关闭操作:
sr.Close()
当然别忘了清理资源:
sr = Nothing
StreamReader类可以从流或文件中读取字符,在创建StreamREader类的对象时,可以指定一个流对象,也可以指定一个文件URL,创建对象后就可以调用他的方法 , 从流中读取数据 , 其常用方法如下:
推荐阅读
- win8系统怎么分区硬盘,win8系统怎么分区硬盘空间
- 最好的我们下载,最好的我们下载电影
- jquery项目去除不需要的css,jquery去掉readonly属性
- 模拟器的游戏怎么更新,模拟器的游戏怎么更新不了
- python中非内置函数 python内置函数的用法
- 白鹿原为什么要拍摄,白鹿原为什么禁了
- 如何改变网络代理设置,网络代理哪里设置
- 适合手柄玩的网络游戏,适合手柄的手游
- mysql服务怎么关 mysql服务自动关闭