常用的asp檔案與檔案夾操作函數

來源:互聯網
上載者:User

下面是我收集了大家在開發中常用的asp教程檔案與檔案夾操作函數,有檔案建立,刪除以及檔案夾刪除,建立等功能。

<%
'檔案操作函數:寫檔案
private sub writefile(filename,text)
 dim fso,file
 set fso = createobject("scripting.filesystemobject")
 set file = fso.createtextfile(filename, true)
   file.write(text)
 file.close
 set file = nothing
 set fso = nothing
end sub

'檔案操作函數:讀檔案
function readfile(filename)
 dim fso,file
 set fso = createobject("scripting.filesystemobject")
 set file = fso.opentextfile(filename, 1)
   readfile = file.readall()
 file.close
 set file = nothing
 set fso = nothing
end function

'測試檔案夾是否存在
function checkfolder(folder)
 dim fso,exists
   set fso = createobject("scripting.filesystemobject")
 checkfolder = fso.folderexists(folder)
 set fso = nothing
end function

'建立檔案夾
private sub createfolder(folder)
  dim fso
  set fso = createobject("scripting.filesystemobject")
  fso.createfolder(folder)
  set fso = nothing
end sub

'刪除檔案夾
private sub deletefolder(folder)
  dim fso
  set fso = createobject("scripting.filesystemobject")
  fso.deletefolder(server.mappath(folder))
  set fso = nothing
end sub

'刪除檔案
private sub deletefile(fname)
   set fso = createobject("scripting.filesystemobject")
 if fso.fileexists(server.mappath(fname)) then
  set f = fso.getfile(server.mappath(fname))
  f.delete()
  set f = nothing
 end if
 set fso = nothing
end sub

'測試檔案夾是否存在,不存在則建立
private sub checksavepath(filesavepath)
 p_tmp = split(filesavepath,"/")
 path = ""
 for i = 0 to ubound(p_tmp)
  if p_tmp(i) = "" then
   path = path & "/"
   else
    path = path & p_tmp(i) & "/"
    if not checkfolder(server.mappath(path)) then call createfolder(server.mappath(path)) 
  end if
 next
end sub
%>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.