欢迎光临
我们一直在努力

在vb中删除带子文件夹的文件夹-.NET教程,VB.Net语言

建站超值云服务器,限时71元/月

采用递归算法删除带有多级子目录的目录 
option explicit

private sub command1_click()
dim strpathname as string
strpathname = “”
strpathname = inputbox(“请输入需要删除的文件夹名称∶”, “删除文件夹”)
if strpathname = “” then exit sub

on error goto errorhandle
setattr strpathname, vbnormal 此行主要是为了检查文件夹名称的有效性
recursetree strpathname
label1.caption = “文件夹” & strpathname & “已经删除!”
exit sub
errorhandle:
msgbox “无效的文件夹名称:” & strpathname
end sub

sub recursetree(currpath as string)
dim sfilename as string
dim newpath as string
dim spath as string
static oldpath as string

spath = currpath & “\”

sfilename = dir(spath, 31) 31的含义∶31=vbnormal+vbreadonly+vbhidden+vbsystem+vbvolume+vbdirectory
do while sfilename <> “”
if sfilename <> “.” and sfilename <> “..” then
if getattr(spath & sfilename) and vbdirectory then 如果是目录和文件夹
newpath = spath & sfilename
recursetree newpath
sfilename = dir(spath, 31)
else
setattr spath & sfilename, vbnormal
kill (spath & sfilename)
label1.caption = spath & sfilename 显示删除过程
sfilename = dir
end if
else
sfilename = dir
end if
doevents
loop
setattr currpath, vbnormal
rmdir currpath
label1.caption = currpath
end sub

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在vb中删除带子文件夹的文件夹-.NET教程,VB.Net语言
分享到: 更多 (0)