4个回答
展开全部
如果是纯文本,方法:
if dir("1.txt") <> "" then
exit sub
else
if dir("1.txt") = "" then
Open "1.txt" For output As #1 \'以写入方式打开文本
write #1 ,, text1.text \'要写入的文本内容
close #1
end if
end if
如果是二进制或随记文本,方法:
Open 文件名 For Binary As #2
Get #2,, LoadBytes /'loadbytes为要写入的内容.
Close #2
if dir("1.txt") <> "" then
exit sub
else
if dir("1.txt") = "" then
Open "1.txt" For output As #1 \'以写入方式打开文本
write #1 ,, text1.text \'要写入的文本内容
close #1
end if
end if
如果是二进制或随记文本,方法:
Open 文件名 For Binary As #2
Get #2,, LoadBytes /'loadbytes为要写入的内容.
Close #2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
open app.path & "\1.txt" for append as #1
如果有文件存在,则打开文件,在文件尾添加数据,不存在则创建一个文件
不能用output 打开文件,这样不管有没有存在,都是覆盖原文件的
如果有文件存在,则打开文件,在文件尾添加数据,不存在则创建一个文件
不能用output 打开文件,这样不管有没有存在,都是覆盖原文件的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
第一步:按顺序点击: 工程——引用 ,勾选:"microsoft scripting runtime"
第二步:在窗体上创建一个按钮,复制以下代码即可:
Option Explicit
Private Sub Command1_Click()
Dim fso As New FileSystemObject
If fso.FileExists(IIf(Right(App.Path, 1) = "\", App.Path, App.Path & "\") & "1.txt") = False Then
fso.CreateTextFile IIf(Right(App.Path, 1) = "\", App.Path, App.Path & "\") & "1.txt"
End If
End Sub
第二步:在窗体上创建一个按钮,复制以下代码即可:
Option Explicit
Private Sub Command1_Click()
Dim fso As New FileSystemObject
If fso.FileExists(IIf(Right(App.Path, 1) = "\", App.Path, App.Path & "\") & "1.txt") = False Then
fso.CreateTextFile IIf(Right(App.Path, 1) = "\", App.Path, App.Path & "\") & "1.txt"
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询