Functions.DiskSpace 方法 (String) | |
返回指定磁盘的容量。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION DiskSpace(
cDrive AS STRING
) AS INT64
public static long DiskSpace(
string cDrive
)
查看代码参数
- cDrive
- 类型:String
The name of the drive as a string, for example "C:", "A:". If you do not specify a drive, the Windows default is used.
返回值
类型:
Int64
指定磁盘驱动器的容量(以字节为单位)。
备注
DiskSpace() 确定指定磁盘驱动器的容量(以字节为单位)。
此函数仅对大小不超过 2 GB 的磁盘驱动器准确。
对于更大的驱动器,请参考 Windows API 函数 GetDiskFreeSpaceEx()。
示例
此示例在 TextBox 中显示 C 盘的容量:
1TextBox{, "C 盘容量", AsString( DiskSpace(3) ) }:Show()
2TextBox{, "C 盘容量", AsString( DiskSpace("C:") ) }:Show()
参见