亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        asp自動創(chuàng)建文件夾

        字號:


            在asp操作文件中,遇到了創(chuàng)建多級文件夾,其實一級別的創(chuàng)建文件夾很簡單,就fso(路徑)即可,但是遇到了多級文件夾,這就得寫函數(shù)來創(chuàng)建多級文件夾
            相關:php自動創(chuàng)建文件夾
            asp自動創(chuàng)建多級文件夾,當其中文件夾不存在時,自動創(chuàng)建文件夾.
            代碼如下:
            <%@LANGUAGE = VBScript%>
            <%Option Explicit%>
            <%'asp版本自動創(chuàng)建文件夾
            Dim fso,fso_flag,base,path,i
            set fso = CreateObject("Scripting.FileSystemObject")
            If isobject(fso) Then
            fso_flag = True
            Else
            fso_flag = false
            End If'
            If not fso_flag Then response.write"不支持fso.",response.End()
            base = request.ServerVariables("APPL_PHYSICAL_PATH")'獲取本地基本物理路徑
            'asp自動創(chuàng)建文件夾函數(shù)開始
            Function createdir(path)
            Dim temp_path,temp_path_array '定義私有路徑
            path = Replace(path,"\","/")
            ' response.write path
            If isnull(path) or path = "" Then
            createdir = False
            Exit Function
            End if
            If not fso.FolderExists(path) then
            '獲取次級目錄路徑
            temp_path_array = Split(path,"/")
            For i = 0 To UBound(temp_path_array)-1
            temp_path = temp_path&temp_path_array(i)&"/"
            Next'
            temp_path = Left(temp_path,Len(temp_path)-1)'獲取次級目錄
            if createdir(temp_path) Then
            fso.CreateFolder (path)
            createdir = true
            End If
            else'www.forasp.cn
            createdir = true
            Exit Function
            End if
            End Function
            'asp創(chuàng)建多級文件夾函數(shù)完畢
            path = base&"a/b/c"'因為path獲取站點物理路徑最后包括"/",所以建立文件要以空開頭,然后是文件夾名
            'response.write path
            If (createdir(path)) Then
            response.write "已經(jīng)創(chuàng)建"
            Else
            response.write "創(chuàng)建失敗"
            End if
            %>