VB如何自动创建以日期命名的文件夹,并在文件夹中创建以时间命名的文档?

 我来答
网海1书生
科技发烧友

推荐于2016-11-30 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26225

向TA提问 私信TA
展开全部
d = Format(Now(), "yyyymmdd")
f = Format(Now(), "hhnnss")
MkDir App.Path & "\" & d '建文件夹
Open App.Path & "\" & d & "\" & f & ".txt" For OutPut As #1 '建文件
Print #1, "OK"
Close #1
bxh0736
2013-01-18 · 超过29用户采纳过TA的回答
知道答主
回答量:109
采纳率:0%
帮助的人:69.1万
展开全部
给你一段代码 你自己执行下看下效果吧
Public Declare Function MakeSureDirectoryPathExists Lib "imagehlp.dll" (ByVal lpPath As String) As Long

public function WriteLog(sDesc as string)

Dim sCurrentDate As String
sCurrentDate = Format$(Now, "yyyy-mm-dd hh:mm:ss")

Dim sDir As String, sLogFile As String
sDir = App.Path & "\..\Log\" & Format$(sCurrentDate, "yyyymm")
sLogFile = sDir & "\" & Format$(sCurrentDate, "yyyymmdd") & ".log"
If MakeSureDirectoryPathExists(sLogFile) = 0 Then Exit Function

Dim I As Long
I = FreeFile
Open sFile For Append Access Write As #I
Print #I, sCurrentDate & "`" & sDesc
Close #I

end fucntion
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
crazy0qwer
推荐于2016-11-16 · TA获得超过3299个赞
知道大有可为答主
回答量:4020
采纳率:71%
帮助的人:1285万
展开全部
Private Sub Command1_Click()
Dim d As String, f As String
d = Format(Now(), "yyyy-mm-dd")
f = Format(Now(), "hh:nn:ss")
MkDir "D:" & "\" & d
'建文件夹
Open "D:" & "\" & d & "\" & f & ".txt" For Output As #1
'建文件
Print #1, "OK"
Close #1
End Sub
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式