欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

ASP函數(shù):檢查文件夾是否存在,不存在則創(chuàng)建文件夾

admin
2024年9月24日 10:55 本文熱度 798

Public Function CheckAndCreateFolder(FolderName)

  fldr = Server.Mappath(FolderName)

  Set fso = CreateObject("Scripting.FileSystemObject")

  If Not fso.FolderExists(fldr) Then

    fso.CreateFolder(fldr)

  End If

  Set fso = Nothing

End Function

檢查文件夾是否存在,不存在則創(chuàng)建文件夾,該函數(shù)無返回值。

例:Call CheckAndCreateFolder("ASP")

檢查當(dāng)前目錄下是否存在ASP文件夾,不存在則創(chuàng)建文件夾ASP。


asp關(guān)于fso函數(shù)

'//提供文件處理通用接口

Class FileSystemObject

  '/*

  ' * 功能描述:刪除文件

  ' * 輸入?yún)?shù):FileName——文件相對路徑

  '*/

  Public Function DelFile(FileName)

     Dim getPath

     getPath="/"

     SET Fso=Server.CreateObject("Scripting.FileSystemObject")

     getPath=Replace(getPath&FileName,"//","/")

     if Fso.FileExists(Server.MapPath(getPath))=True then

        Fso.DeleteFile Server.mappath(getPath)

     End if

     Set Fso=Nothing

  End Function


  '/*

  ' * 功能描述:判斷路徑是否存在,如不存在則創(chuàng)建

  ' * 輸入?yún)?shù):SaveFilePath——相對路徑,如:/UploadFiles/NewsFiles

  '*/

  Public Function CreatePath(SaveFilePath)

     Dim DeclarePath,FileObj,FilePath

     DeclarePath="/"

     Set FileObj=Server.CreateObject("Scripting.FileSystemObject")

     For Each FilePath in split(SaveFilePath,"/") 

        DeclarePath=Replace(DeclarePath&FilePath&"/","//","/")  

        if FileObj.FolderExists(Server.MapPath(DeclarePath))=false then 

           FileObj.CreateFolder(Server.MapPath(DeclarePath))'創(chuàng)建文件夾

        end if

     Next

     Set FileObj=nothing

     CreatePath=DeclarePath

  End Function


  '/*

  ' * 功能描述:重命名文件夾

  ' * 輸入?yún)?shù):GetPath——文件夾路徑

  ' * 輸入?yún)?shù):OldName——舊的文件夾名稱

  ' * 輸入?yún)?shù):NewName——新的文件夾名稱

  '*/

  Public Function RenFolder(GetPath,OldName,NewName)

     Dim Fso

     if OldName="" or NewName="" then

        exit Function

     else

        if OldName=NewName then exit Function

     end if

     SET Fso=Server.CreateObject("Scripting.FileSystemObject")

     if Fso.FolderExists(Server.MapPath(GetPath&NewName)) then

        response.write"<script language=javascript>alert('目錄已經(jīng)存在!!');this.history.go(-1);</script>"

        response.end()

     end if

     '//舊的文件夾不存在,則創(chuàng)建

     if Not Fso.FolderExists(Server.MapPath(GetPath&OldName)) Then

        CreatePath(GetPath&OldName)

     End if

     Fso.MoveFolder Server.MapPath(GetPath&OldName),Server.MapPath(GetPath&NewName)

     set Fso=nothing

     'response.redirect request.ServerVariables("HTTP_REFERER")

  End Function


  '/*

  ' * 功能描述:保存當(dāng)前文件

  ' * 輸入?yún)?shù):GetPath——文件路徑

  ' * 輸入?yún)?shù):GetContent——保存的內(nèi)容

  ' * 輸入?yún)?shù):GetFile——保存的文件名

  '*/

  Public Function SaveEditFile(GetPath,GetContent,GetFile)

     if GetContent="" or GetFile="" then exit Function

     SET Fso=Server.CreateObject("Scripting.FileSystemObject")

     set CF=Fso.CreateTextFile(Server.mappath(GetPath&GetFile),true)

      CF.write GetContent

      CF.Close

     set CF=nothing

     set Fso=nothing

     'response.redirect request.ServerVariables("HTTP_REFERER")

  End Function

End Class


該文章在 2024/9/24 10:55:51 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運作、調(diào)度、堆場、車隊、財務(wù)費用、相關(guān)報表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點,圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務(wù)都免費,不限功能、不限時間、不限用戶的免費OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved