请输入您要查询的百科知识:

 

词条 FreeSpace
释义

描述

返回指定的驱动器或网络共享对于用户的可用空间大小。只读。

语法

object.FreeSpace

object 应为 Drive 对象的名称。

说明

FreeSpace 属性与 AvailableSpace 属性返回的值基本相同。对于支持限额的计算机系统来说,这两个属性返回的值有所差异。

以下代码举例说明如何使用 FreeSpace 属性:

Sub ShowFreeSpace(drvPath)

Dim fs, d, s

Set fs = CreateObject("Scripting.FileSystemObject")

Set d = fs.GetDrive(fs.GetDriveName(drvPath))

s = "驱动器 " & UCase(drvPath) & " - "

s = s & d.VolumeName & vbCrLf

s = s & "可用空间: " & FormatNumber(d.FreeSpace/1024, 0)

s = s & "KB"

MsgBox s

End Sub

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/29 8:08:02