展开全部
IO.File.ReadAllBytes("c:/123.txt")
IO.File.ReadAllLines("c:/123.txt")
IO.File.ReadAllText("c:/123.txt")
上面是读取
IO.File.CreateText("c:/123.txt")
IO.File.WriteAllText("c:/123.txt", "")
IO.File.WriteAllLines("c:/123.txt", New String() {})
IO.File.WriteAllBytes("c:/123.txt", New Byte() {})
这几个都可创建
IO.File.ReadAllLines("c:/123.txt")
IO.File.ReadAllText("c:/123.txt")
上面是读取
IO.File.CreateText("c:/123.txt")
IO.File.WriteAllText("c:/123.txt", "")
IO.File.WriteAllLines("c:/123.txt", New String() {})
IO.File.WriteAllBytes("c:/123.txt", New Byte() {})
这几个都可创建
更多追问追答
追问
如果文件不错在 出错弹出msgbox 怎么写?
追答
IO.File.Exists("c:/123.txt")
判断文件是否存在!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2018-12-19
展开全部
if IO.File.Exists("c:/123.txt") = false Then
msgbox("文件不存在")
exit sub
End if
如果取文件里面的话使用这个
if IO.File.Exists(Application.StartupPath & "\C:\123.txt") = False Then
msgbox("文件不存在")
exit sub
End if
正确的
if IO.File.Exists(Application.StartupPath & "\C:\123.txt") = False Then
msgbox("文件存在")
exit sub
End if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if IO.File.Exists("c:/123.txt")=false then
msgbox("文件不存在")
exit sub
end if
msgbox("文件不存在")
exit sub
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就这样很简单
Dim fileContents As String
fileContents = My.Computer.FileSystem.ReadAllText("c:/123.txt") '读取
My.Computer.FileSystem.WriteAllText("c:/123.txt", "adsfwqetiuj", False, System.Text.Encoding.Unicode)‘保存
Dim fileContents As String
fileContents = My.Computer.FileSystem.ReadAllText("c:/123.txt") '读取
My.Computer.FileSystem.WriteAllText("c:/123.txt", "adsfwqetiuj", False, System.Text.Encoding.Unicode)‘保存
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询