主頁(yè) > 知識(shí)庫(kù) > ASP檢查文件與目錄是否存在的函數(shù)代碼

ASP檢查文件與目錄是否存在的函數(shù)代碼

熱門標(biāo)簽:電銷機(jī)器人源碼網(wǎng)盤下載 中國(guó)辦理電信400電話 福建外呼增值業(yè)務(wù)線路 電銷機(jī)器人教育 伊春外呼業(yè)務(wù)系統(tǒng) 調(diào)度系統(tǒng)外呼 河北智能外呼系統(tǒng)軟件 綿陽(yáng)防封電銷卡價(jià)格 宜賓語(yǔ)音外呼系統(tǒng)軟件

以下為兩個(gè)自寫的ASP函數(shù),第一個(gè)函數(shù)CheckDir,用于判斷所指定的文件夾是否存在,也就是目錄是否存在;第二個(gè)函數(shù)CheckFile用于檢查指定文件是否存在在于某個(gè)目錄中。

兩個(gè)函數(shù)都是基于ASP中的FileSystemObject對(duì)象,也就是FSO,寫成函數(shù)方便以后使用。

ASP檢查目錄是否存在的函數(shù)代碼

Function CheckDir(Byval FolderPath)
dim fso
folderpath=Server.MapPath(".")"\"folderpath
Set fso = Server.CreateObject("Scripting.FileSystemObject")
If fso.FolderExists(FolderPath) then
'存在
    CheckDir = True
Else
'不存在
    CheckDir = False
End if
Set fso = nothing
End Function

Function isExistFolder(Byval folderDir)
	on error resume next
	If objFso.FolderExists(server.MapPath(folderDir)) Then isExistFolder=True Else isExistFolder=False
	if err then err.clear:isExistFolder=False
End Function

ASP檢查文件是否存在的函數(shù)代碼

Function CheckFile(Byval FilePath) '檢查某一文件是否存在
  Dim fso
  Filepath=Server.MapPath(FilePath)
  Set fso = Server.CreateObject("Scripting.FileSystemObject")
  If fso.FileExists(FilePath) then
  '存在
      CheckFile = True
  Else
  '不存在
      CheckFile = False
  End if
  Set fso = nothing
End Function

Function isExistFile(Byval fileDir)
	on error resume next
	If (objFso.FileExists(server.MapPath(fileDir))) Then isExistFile=True Else isExistFile=False
	if err then err.clear:isExistFile=False
End Function

下面是其他網(wǎng)友的補(bǔ)充

'================================================== 
'函數(shù)名: CheckFile 
'作 用:檢查某一文件是否存在 
'參 數(shù):FileName ------ 文件地址 如:/swf/1.swf 
'返回值:False ---- True 
'================================================== 
  Public Function CheckFile(FileName) 
     On Error Resume Next 
     Dim FsoObj 
     Set FsoObj = Server.CreateObject("Scripting.FileSystemObject") 
     If Not FsoObj.FileExists(Server.MapPath(FileName)) Then 
       CheckFile = False 
       Exit Function 
     End If 
     CheckFile = True:Set FsoObj = Nothing 
  End Function

到此這篇關(guān)于ASP檢查文件與目錄是否存在的函數(shù)代碼的文章就介紹到這了,更多相關(guān)asp文件是否存在內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • ASP如何檢測(cè)某文件夾是否存在,不存在則自動(dòng)創(chuàng)建
  • asp 判斷上傳文件中是否存在危險(xiǎn)代碼
  • asp判斷某個(gè)文件是否存在的函數(shù)

標(biāo)簽:蘇州 優(yōu)質(zhì)小號(hào) 延邊 電商邀評(píng) 河池 那曲 銅川 新鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP檢查文件與目錄是否存在的函數(shù)代碼》,本文關(guān)鍵詞  ASP,檢查,文件,與,目錄,是否,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP檢查文件與目錄是否存在的函數(shù)代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP檢查文件與目錄是否存在的函數(shù)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章