以MB(兆字节)为单位返回指定路径所在分区的剩余空间.
DriveSpaceFree ( "路径" )
路径 | 要获得相应信息的驱动器路径. |
成功: | 以MB(兆字节)为单位返回指定路径所在分区的剩余空间(浮点数). |
失败: | 返回值为 0,并把 @error 设为 1. |
Local $iFreeSpace = DriveSpaceFree(@HomeDrive & "\") ; Find the free disk space of the home drive, generally this is the C:\ drive.
MsgBox(4096, "可用空间:", $iFreeSpace & " MB")