本站首页 音乐欣赏 古代书法 山人书法 乐园论坛
欢迎光临诗书乐园网站!诗书乐园新网址1(pcmusic.eicp.top:58897) 诗书乐园新网址2(25x29087k7.wicp.vip);
栏目导航 首页>>ASP技术>>ASP资料
首页 作者 管理员  发表时间 2012-05-27 0:30:42 总浏览次数 25 回到上页
 
[转帖]创建多级目录
 

<%'-------------------------------------------------
'创建多级目录,可以创建不存在的根目录
'参数:要创建的目录名称,可以是多级
'返回逻辑值,True成功,False失败
'创建目录的根目录从当前目录开始
'---------------------------------------------------
Function CreateMultiFolder(CFolder)
Dim objFSO,PhCreateFolder,CreateFolderArray,CreateFolder
Dim i,ii,CreateFolderSub,PhCreateFolderSub,BlInfo
BlInfo = False
CreateFolder = CFolder
On Error Resume Next
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
If Err Then
Err.Clear()
Exit Function
End If
CreateFolder = Replace(CreateFolder,"\","/")
If Left(CreateFolder,1)="/" Then
CreateFolder = Right(CreateFolder,Len(CreateFolder)-1)
End If
If Right(CreateFolder,1)="/" Then
CreateFolder = Left(CreateFolder,Len(CreateFolder)-1)
End If
CreateFolderArray = Split(CreateFolder,"/")
For i = 0 to UBound(CreateFolderArray)
CreateFolderSub = ""
For ii = 0 to i
CreateFolderSub = CreateFolderSub & CreateFolderArray(ii) & "/"
Next
PhCreateFolderSub = Server.MapPath(CreateFolderSub)
If Not objFSO.FolderExists(PhCreateFolderSub) Then
objFSO.CreateFolder(PhCreateFolderSub)
End If
Next
If Err Then
Err.Clear()
Else
BlInfo = True
End If
CreateMultiFolder = BlInfo
End Function

'使用方法:

Response.Write CreateMultiFolder("upload/2005/3/26/100") &"<br>"

'Response.Write CraeteMultiFolder("upload\2005\3\26\100\")
%>

 

 

使用函数自动生成n层目录
作者:佚名  出处:中国自学编程网收集整理   发布日期:2007-04-19  
 
先检查是否已经存在该目录了,如果存在,则不做任何处理,如果不存在则创建。
希望对各位快速开发有用。
CheckFolder.asp

<%
\'***********************************************************************************************************
\'作 者: 赵敏 flash90@sohu.com
\'页面名称: CreateFolder.asp
\'页面功能: 生成n层目录的文件夹
\'使用方法: 调用CheckFolder()函数,例如: CheckFolder(path)
\'传入参数: 即将上传的文件的相对路径,例如: path = \"./upload/bbb/ccc/ddd\"
\'缺 点: 必须在参数path里面带上upload文件夹
\'***********************************************************************************************************
Sub CheckFolder(path)
SplitPath(path)
End Sub
Sub SplitPath(path)
dim Road \'物理路径
Road = Server.Mappath(\"./upload\")
dim CurRoad \'当前路径
Road = Split(Road,\"\\\",-1,1)
CurRoad = Road(UBound(Road))
dim folder,FSO
Set FSO = Server.CreateObject(\"Scripting.FileSystemObject\")
folder = Split(path,\"\\\",-1,1)
for i = 0 to UBound(folder) step 1
if folder(i) = CurRoad then
j = i
exit for
end if
Next
i = j + 1
if i <= UBound(folder) then
dim myroad
myroad = Server.MapPath(\".\\upload\")
for i = j + 1 to UBound(folder) step 1
CreateFolder myroad,folder(i)
myroad = myroad &\"/\"& folder(i)
Next
end if
End Sub
Sub CreateFolder(mypath,folderName)
Dim fso,f
Set fso = Server.CreateObject(\"Scripting.FileSystemObject\")
if Not(fso.FolderExists(mypath+\"/\"+folderName)) then
set f = fso.CreateFolder(mypath+\"/\"+folderName)
end if
End Sub
Set fso = nothing
%> 


回到上页

 
关于我们 联系我们
Copyright ©诗书乐园 All Rights Reserved
地址 广东省河源市和平县  Email pcmusic1000@163.com