该页面翻译自 Google Chrome Extensions 与 Google Chrome Apps。除非特别说明,该页面的内容遵循 Creative Commons Attribution 3.0 License,代码示例遵循 BSD License。
描述: |
使用 chrome.system.storage API
查询存储设备信息,并在连接或移除可移动存储设备时得到通知。
|
可用版本: |
从 Chrome 30 开始稳定支持。
|
权限: |
"system.storage"
|
Get the storage information from the system. The argument passed to the callback is an array of StorageUnitInfo objects. 从系统获取存储信息,传递给回调函数的参数为 StorageUnitInfo 对象的数组。
callback 参数应该指定一个如下形式的函数:
function(array of StorageUnitInfo info) {...};
弹出可移动存储设备。
callback 参数应该指定一个如下形式的函数:
function(enum of"success"
,"in_use"
,"no_such_device"
, or"failure"
result) {...};
"success"
, "in_use"
, "no_such_device"
, or "failure"
)
当可移动存储器连接到系统时产生。