函数参考


DriveSpaceTotal

以MB(兆字节)为单位返回指定路径所在分区的容量大小.

DriveSpaceTotal ( "路径" )

参数

路径 要获得相应信息的驱动器路径.

返回值

成功: 以MB(兆字节,浮点小数)为单位返回指定路径所在分区的容量大小.
失败: 把 @error 设为 1.

注意/说明

即使给定的路径是某驱动器子目录的完整路径(必须是确实存在的) DriveSpaceTotal 也能计算出其所在分区的总大小,但如果指派的是一个文件的路径则不行.

相关

DriveGetDrive, DriveGetFileSystem, DriveGetLabel, DriveGetSerial, DriveGetType, DriveSetLabel, DriveSpaceFree, DriveStatus, FileGetSize

示例/演示


Local $iTotalSpace = DriveSpaceTotal(@HomeDrive & "\") ; Find the total disk space of the home drive, generally this is the C:\ drive.
MsgBox(4096, "Total Space:", $iTotalSpace & " MB")