精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

取得指定驅動器的總容量

代碼:

<!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

相關文章