asp入门教程:ASP FileSystemObject 对象

作者:袖梨 2022-06-30

<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")

If (fs.FileExists("c:winntcursors3dgarro.cur"))=true Then
      Response.Write("File c:winntcursors3dgarro.cur exists.")
Else
      Response.Write("File c:winntcursors3dgarro.cur does not exist.")
End If

set fs=nothing
%>

相关文章

精彩推荐