ASP实例教程:FileSystemObject对象

2009-05-12 15:34:06来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

FileSystemObject 对象

指定的文件存在吗?

本例演示如何首先创建FileSystemObject对象,然后使用FileExists方法来探测某文件是否存在。

本示例代码如下:

以下为引用的内容:

<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If (fs.FileExists("c:\windows\cursors\xxx.cur"))=true Then
Response.Write("文件 c:\windows\cursors\xxx.cur 存在。")
Else
      Response.Write("文件 c:\windows\cursors\xxx.cur 不存在。")
End If
set fs=nothing
%>
</body>
</html>

本实例运行结果如下:

 文件 c:\windows\cursors\xxx.cur 不存在。

指定的文件夹存在吗?

本例演示如何使用FolderExists方法探测某文件夹是否存在。

本示例代码如下:

以下为引用的内容:

<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If fs.FolderExists("c:\temp") = true Then
      Response.Write("文件夹 c:\temp 存在。")
Else
      Response.Write("文件夹 c:\temp 不存在。")
End If
set fs=nothing
%>
</body>
</html>

本实例运行结果如下:

 文件夹 c:\temp 不存在。

指定的驱动器存在吗?

本例演示如何使用DriveExists方法来探测某个驱动器是否存在。
 
本示例代码如下:

以下为引用的内容:

<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.driveexists("c:") = true then
      Response.Write("驱动器 c: 存在。")
Else
      Response.Write("驱动器 c: 不存在。")
End If
Response.write("<br>")
if fs.driveexists("g:") = true then
      Response.Write("驱动器 g: 存在。")
Else
      Response.Write("驱动器 g: 不存在。")
End If
set fs=nothing
%>
</body>
</html>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP实例教程:Form集合

下一篇:关于ASP Recordset 分页出现负数解决方法及建议