最新下载
热门教程
- 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.
相关文章
- 地狱即我们战斗怎么攻击 攻击与能量获取指南 09-17
- 禁闭求生2蜗牛壳头盔怎么做 蜗牛壳头盔制作攻略 09-17
- 地狱即我们战斗怎么招架 招架与防守反击技巧指南 09-17
- 无主之地4全宣传大喇叭收集攻略 宣传大喇叭位置一览 09-17
- 禁闭求生2蟑螂套有什么 蟑螂套护甲制作大全 09-17
- 无主之地4圣城宣传大喇叭在哪 圣城宣传大喇叭收集攻略 09-17