最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp入门教程:ASP FileSystemObject 对象
时间:2022-06-30 11:43:35 编辑:袖梨 来源:一聚教程网
asp入门教程:ASP FileSystemObject 对象
使用FileSystemObject对象是用来存取档案系统的服务器上。
下面我们来举例说明吧.
<%
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
%>
输出结果.
File c:winntcursors3dgarro.cur exists.
实例二.
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If fs.FolderExists("c:temp") = true Then
Response.Write("Folder c:temp exists.")
Else
Response.Write("Folder c:temp does not exist.")
End If
set fs=nothing
%>
输出结果.
Folder c:temp exists.
实例三.
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.driveexists("c:") = true then
Response.Write("Drive c: exists.")
Else
Response.Write("Drive c: does not exist.")
End If
Response.write("
")
if fs.driveexists("g:") = true then
Response.Write("Drive g: exists.")
Else
Response.Write("Drive g: does not exist.")
End If
set fs=nothing
%>
输出结果为.
Drive c: exists.
Drive g: does not exist.
相关文章
- 《重构:阿塔提斯》缇尼娅芯片有哪些搭配思路 06-16
- 《白荆回廊》三角混搭队最强搭配指南 06-16
- CUDIS币注册教程-2025币安交易所账号全攻略 06-16
- 《花亦山心之月》司业获取方法有哪些 06-16
- 如何交易FLOKI币?2025OKX交易所高效攻略 06-16
- 《斗罗大陆:武魂觉醒》梦影迷声5-3如何 06-16