asp filesystemobject 文件系统例子

作者:袖梨 2022-06-30

<%
set fs=server.createobject("scripting.filesystemobject")
if (fs.fileexists("c:windowscursorsxxx.cur"))=true then
response.write("文件 c:windowscursorsxxx.cur 存在。")
else
      response.write("文件 c:windowscursorsxxx.cur 不存在。")
end if
set fs=nothing
%>

相关文章

精彩推荐