取得指定驅動器的總容量
代碼:
<!DOCTYPE html><html>
<body>
<%
Dim fs,d,n
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set d=fs.GetDrive("c:")
n = "Drive: " & d
n = n & "<br>Total size in bytes: " & d.TotalSize
Response.Write(n)
set d=nothing
set fs=nothing
%>
</body>
</html>
結果:
Drive: C:
Total size in bytes: 598876352512
相關文章
- ASP Drive 對象
- ASP 簡介
- ASP ReadLine 方法
- ASP WriteLine 方法
- ASP DateLastAccessed 屬性
- ASP Path 屬性
- ASP Size 屬性
- ASP Delete 方法
- ASP QueryString 集合
- ASP CreateFolder 方法
- ASP DriveExists 方法
- ASP GetAbsolutePathName 方法
- ASP GetFile 方法
- ASP.NET HtmlInputCheckBox 控件
- ASP.NET HtmlInputHidden 控件
- ASP.NET HtmlTableRow 控件
- ASP.NET DataValueField 屬性
- ASP.NET SelectedIndex 屬性
- form 集合的簡單應用
- 自制的點擊計數器