指定的文件存在嗎?
本例演示如何首先創建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方法來探測某個驅動器是否存在。
本文由網頁教學網(www.webjx.com)發布!轉載和采集的話請不要去掉!謝謝。
本示例代碼如下:
<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>
本實例運行結果如下:
驅動器 c: 存在。
驅動器 g: 存在。
取得某個指定驅動器的名稱
本例演示如何使用GetDriveName方法來取得某個指定的驅動器的名稱。
本示例代碼如下:
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetDriveName("c:\windows\cursors\abc.cur")
Response.Write("驅動器名稱是:" & p)
set fs=nothing
%>
</body>
</html>
本實例運行結果如下:
驅動器名稱是:c:
取得某個指定路徑的父文件夾的名稱
本例演示如何使用GetParentFolderName方法來取得某個指定的路徑的父文件夾的名稱。
本示例代碼如下:
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("c:\winnt\cursors\3dgarro.cur")
Response.Write("c:\windows\cursors\abc.cur 的父文件夾名稱是:" & p)
set fs=nothing
%>
</body>
</html>
本實例運行結果如下:
c:\windows\cursors\abc.cur 的父文件夾名稱是:c:\winnt\cursors
取得文件夾擴展名
本例演示如何使用GetExtensionName方法來取得指定的路徑中的最後一個成分的文件擴展名。
看到本信息說明該文是通過網頁教學(www.webjx.com)整理發布的,請不要刪掉!
本示例代碼如下:
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write("文件 3dgarro 的文件擴展名是:")
Response.Write(fs.GetExtensionName("c:\windows\cursors\abc.cur"))
set fs=nothing
%>
</body>
</html>
本實例運行結果如下:
文件 3dgarro 的文件擴展名是:cur
取得文件名
本例演示如何使用GetFileName方法來取得指定的路徑中的最後一個成分的文件名。
本示例代碼如下:
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write("這個文件名的最後一個成分是:")
Response.Write(fs.GetFileName("c:\windows\cursors\abc.cur"))
set fs=nothing
%>
</body>
</html>
本實例運行結果如下:
這個文件名的最後一個成分是:abc.cur
取得文件或文件夾的基名稱
本例演示如何使用GetBaseName方法來返回在指定的路徑中文件或者文件夾的基名稱。
加此信息網頁教學網(www.webjx.com)發布目的是為了防止你變懶!webjx.com不主張采集!
本示例代碼如下:
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetBaseName("c:\windows\cursors\abc.cur"))
Response.Write("<br />")
Response.Write(fs.GetBaseName("c:\windows\cursors\"))
Response.Write("<br />")
Response.Write(fs.GetBaseName("c:\windows\"))
set fs=nothing
%>
</body>
</html>
本實例運行結果如下:
abc
cursors
windows