asp判断服务器上文件是否存在

asp判断服务器上文件是否存在,第1张

filepath=""‘这里的路径是相对路径

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

delefilepath=Server.MapPath(filepath)

if deleteFileObject.FileExists(delefilepath) then

Response.Write("<div class="pageIcon">存在这个文件")

试试这段代码

function checkcode(path)

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

objstream.Type=1

objstream.mode=3

objstream.open

objstream.Position=0

objstream.loadfromfile path

bintou=objstream.read(2)

If AscB(MidB(bintou,1,1))=&HEF And AscB(MidB(bintou,2,1))=&HBB Then

checkcoder="utf-8"

ElseIf AscB(MidB(bintou,1,1))=&HFF And AscB(MidB(bintou,2,1))=&HFE Then

checkcode="unicode"

Else

checkcode="gb2312"

End If

objstream.close

set objstream=nothing

end function


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/312938.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-29
下一篇2023-04-29

发表评论

登录后才能评论

评论列表(0条)

    保存