求助一个问题
for i=1 to ubound(brray)if not fs.FolderExists(pathname) then fs.CreateFolder(pathname)
on error resume next
if i+1<=ubound(brray) then pathname=pathname&"\"&brray(i+1)
next
我的思想是
如果 if not fs.FolderExists(pathname) then fs.CreateFolder(pathname) 发生错误,我也要运
if i+1<=ubound(brray) then pathname=pathname&"\"&brray(i+1) 并继续循环。
大家帮忙解决一下,