public final class MtpStorageInfo
extends Object
java.lang.Object | |
↳ | android.mtp.MtpStorageInfo |
该类将有关存储单元的信息封装在MTP设备上。 这对应于MTP规范第5.2.2节中描述的存储信息数据集。
Public methods |
|
---|---|
final String |
getDescription() 返回存储单元的描述字符串。 |
final long |
getFreeSpace() 以字节为单位返回存储单元中的可用空间量 |
final long |
getMaxCapacity() 以字节为单位返回存储单元的最大存储容量 |
final int |
getStorageId() 返回存储单元的存储ID。 |
final String |
getVolumeIdentifier() 返回存储单元的卷标识符 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
String getDescription ()
返回存储单元的描述字符串。 这通常在MTP主机上的用户界面中显示给用户。
Returns | |
---|---|
String |
the storage unit description |
long getFreeSpace ()
以字节为单位返回存储单元中的可用空间量
Returns | |
---|---|
long |
the amount of free space |
long getMaxCapacity ()
以字节为单位返回存储单元的最大存储容量
Returns | |
---|---|
long |
the maximum capacity |
int getStorageId ()
返回存储单元的存储ID。 存储ID唯一标识MTP设备上的存储单元。
Returns | |
---|---|
int |
the storage ID |
String getVolumeIdentifier ()
返回存储单元的卷标识符
Returns | |
---|---|
String |
the storage volume identifier |