网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网络编程 >> ASP教程 >> 正文
最新文章
· FSO 组件asp生成html静态页面碰到缓存
· asp实现长文章自动分页插件
· 在ASP中访问和更新Cookies集合
· ASP错误提示大全
· 学习ASP的几个观点
· ASP用两级联动下拉列表来显示大类和小
· ASP取当前页面地址和参数
· ASP删除记录的同时删除相关图片
· asp将查询结果导出到excel
· ASP批量导入Excel到Access或者Sql Se
热门文章
 化境ASP无组件上传类 - upload_5xs
 一个获取ACCESS数据库表名以及表名
 asp将查询结果导出到excel
 艾恩ASP无组件上传修改版
 ASP批量导入Excel到Access或者Sql 
 ASP读取数据库的Flash+JS图片切换特
 ASP用两级联动下拉列表来显示大类和
 ASP+JS实现网页歌曲连播、点播功能
 使用ASP重启服务器
 asp批量替换access数据库中指定字段
相关文章
ASP显示文件夹下所有图片文件
ASP创建多级文件夹函数
来源:96看吧 更新时间:2010/9/13 7:47:52 阅读次数:
字体:[ ] 我要投稿
'=======================================================================
'AutoCreateFolder(strPath)  自动创建指定的多级文件夹
'=======================================================================
'自动创建指定的多级文件夹
'strPath为绝对路径
'调用方法:
'MyPath = "C:\a\b\c\"
'If AutoCreateFolder(MyPath) Then
' Response.Write "创建文件夹成功"
'Else
' Response.Write "创建文件夹失败"
'End If
 
Function AutoCreateFolder(strPath) ' As Boolean
 On Error Resume Next
 Dim astrPath, ulngPath, i, strTmpPath
 Dim objFSO
 If InStr(strPath, "\") <=0 Or InStr(strPath, ":") <= 0 Then
  AutoCreateFolder = False
  Exit Function
 End If
 Set objFSO = Server.CreateObject("scripting.FileSystemObject")
  If objFSO.FolderExists(strPath) Then
   AutoCreateFolder = True
   Exit Function
  End If
  astrPath = Split(strPath, "\")
  ulngPath = UBound(astrPath)
  strTmpPath = ""
  For i = 0 To ulngPath
   strTmpPath = strTmpPath & astrPath(i) & "\"
   If Not objFSO.FolderExists(strTmpPath) Then
    ' 创建
    objFSO.CreateFolder(strTmpPath)
   End If
  Next
 Set objFSO = Nothing
 If Err = 0 Then
  AutoCreateFolder = True
 Else
  AutoCreateFolder = False
 End If
End Function
  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号