程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> ASP自動檢測創建多級目錄,fso與stream生成文件函數

ASP自動檢測創建多級目錄,fso與stream生成文件函數

編輯:ASP技巧

<%

' 網站根目錄
const global_default_root_path = "/"
' 描述: 建立目錄的程序,如果有多級目錄,則一級一級的創建
' 作者: xiaoyuehen
' 日期: 2006-6-3
' 參數: strlocalpath : string, 創建路徑, 必須為物理路徑
' 返回: True/False
function create_directory(strlocalpath)

create_directory = false

dim strlocalfolder

dim strpath, tmppath, tmptpath

dim arrpathlist, intlevel

strlocalfolder = server.mappath(global_default_root_path)

if left(strlocalpath, len(strlocalfolder)) <> strlocalfolder then


exit function

end if

 

' 獲得目錄

strpath

= replace(strlocalpath, strlocalfolder, "")

if left(strpath, 1) = "\" then


strpath = right(strpath, len(strpath) - 1)

end if

 

dim objfolder

set objfolder   = server.createobject("Scripting.FileSystemObject")

' 如果該目錄已存在, 則返回 true

 

   if objfolder.folderexists(strlocalpath) then


create_directory = true


exit function

end if

arrpathlist
= split(strpath, "\")

intlevel

= ubound(arrpathlist)

 

dim i

tmptpath = ""

for i = 0 to intlevel


tmptpath = tmptpath & arrpathlist(i) & "\"

 

 

tmppath = strlocalfolder & "\" & tmptpath


if not objfolder.folderexists(tmppath) then objfolder.createfolder tmppath

next

 

set objfolder = nothing

create_directory = true
end function
' 描述: fso 生成文件
' 作者: xiaoyuehen
' 日期: 2006-6-3
' 參數: strlocalpath : string, 創建路徑, 必須為物理路徑
' 返回: True/False
function fcreate_file(strfilename, byref strcontent)

fcreate_file = false

dim strpath

strpath = left(strfilename, instrrev(strfilename, "\", -1, 1))

'檢測路徑及文件名有效性

if not(create_directory(strpath)) then exit function

const forreading = 1, forwriting = 2, forappending = 8

dim fso, f

set fso = createobject("scripting.filesystemobject")

set f = fso.opentextfile(strfilename, forwriting, true, -2)

f.write strcontent

f.close

set fso = nothing

set f = nothing

fcreate_file = true
end function
' 描述: stream 生成文件
' 作者: xiaoyuehen
' 日期: 2006-6-3
' 參數: strfilename : string, 文件完整路徑, 必須為物理路徑
'
   strcontent : string, 文本內容
' 返回: True/False
function screate_file(strfilename, byref strcontent)

screate_file = false

dim strpath

strpath = left(strfilename, instrrev(strfilename, "\", -1, 1))

'檢測路徑及文件名有效性

if not(create_directory(strpath)) then exit function

dim ado_stream

const forreading = 1, forwriting = 2

set ado_stream = server.createobject("adodb.stream")

with ado_stream


.Open


.type = 2


.Writetext(strcontent)


.SaveToFile strfilename, forwriting


.SetEOS

end with

set ado_stream = nothing

screate_file = true
end function%>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved