加入收藏
联系我们
关于我们
 您现在的位置: 亿聪 >> 网络学院 >> 网络编程 >> ASP >> 正文  
  ASP中常用的文件处理函数         ★★★
ASP中常用的文件处理函数
[ 作者:Andy.m    转贴自:pconline    点击数:5809    更新时间:2003/8/30    文章录入:亿聪 ]
asp 中处理文件上传以及删除时常用的自定义函数:

  <%
  ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  '所有自定义的VBS函数
  ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  function DeleteFile(Filename) '删除文件
  if Filename<>"" then
  Set fso = server.CreateObject("Scripting.FileSystemObject")
  if fso.FileExists(Filename) then
  fso.DeleteFile Filename
  end if
  set fso = nothing
  end if
  end function
  ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  function CreateDIR(byval LocalPath) '建立目录的程序,如果有多级目录,则一级一级的创建
  on error resume next
  LocalPath = replace(LocalPath,"\","/")
  set FileObject = server.createobject("Scripting.FileSystemObject")
  patharr = split(LocalPath,"/")
  path_level = ubound(patharr)
  for i = 0 to path_level
  if i=0 then pathtmp=patharr(0) & "/" else pathtmp = pathtmp & patharr(i) & "/"
  cpath = left(pathtmp,len(pathtmp)-1)
  if not FileObject.FolderExists(cpath) then FileObject.CreateFolder cpath
  next
  set FileObject = nothing
  if err.number<>0 then
  CreateDIR = false
  err.Clear
  else
  CreateDIR = true
  end if
  end function
 




 ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  function SaveRandFileName(byval szFilename) '根据原文件名生成新的随机文件名
  randomize
  'ranNum=int(90000*rnd)+10000
  'if month(now)<10 then c_month="0" & month(now) else c_month=month(now)
  'if day(now)<10 then c_day="0" & day(now) else c_day=day(now)
  'if hour(now)<10 then c_hour="0" & hour(now) else c_hour=hour(now)
  'if minute(now)<10 then c_minute="0" & minute(now) else c_minute=minute(now)

[1] [2]  下一页

  • 上一篇文章: 在ASP与ASP.NET之间共享对话状态

  • 下一篇文章: 浅谈ASP程序的编程与优化
  • 发表评论】【告诉好友】【打印此文】【关闭窗口
     最新5篇热点文章
  • Knoppix 4.0.2 免硬盘免安…[15146]

  • 通过ASP记录进行分页[19327]

  • ASP开发准则[11282]

  • ASP组件指南[11252]

  • ASP指南[11266]

  •  
     最新5篇推荐文章
  • Knoppix 4.0.2 免硬盘免安…[15146]

  • 如何让Win 2003系统更加安…[12512]

  • Nero超刻简明教程[33954]

  • PS商业实战-来杯茶,行吗?…[7090]

  • ASP深度揭密(下)[12236]

  •  
     相 关 文 章
    没有相关文章

      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
        没有任何评论
    设为首页 | 加入收藏 | 关于我们 | 联系我们 | 友情链接 | 版权声明 | 管理登录
    Copyright © 2000-2022 Yicong.com.All Rights Reserved.
    亿聪 版权所有 E-mail: