FuseUtil
public
class
FuseUtil
extends Object
java.lang.Object 中 | |
↳ | com.android.tradefed.util.FuseUtil |
用于 FUSE 操作的辅助类。
摘要
公共构造函数 | |
---|---|
FuseUtil()
|
公共方法 | |
---|---|
boolean
|
canMountZip()
返回是否支持 zip 装载。 |
void
|
mountZip(File zipFile, File mountDir)
在只读模式下将 ZIP 文件作为文件系统装载。 |
void
|
unmountZip(File mountDir)
卸载已装载的 zip 文件。 |
公共构造函数
FuseUtil
public FuseUtil ()
公共方法
可安装 Zip
public boolean canMountZip ()
返回是否支持 zip 装载。
仅当 fuse-zip 可用时,才支持 Zip 安装。
返回 | |
---|---|
boolean |
如果支持 zip 装载,则为 true。否则为 false。 |
安装支架
public void mountZip (File zipFile, File mountDir)
在只读模式下将 ZIP 文件作为文件系统装载。
参数 | |
---|---|
zipFile |
File :要装载的 ZIP 文件。 |
mountDir |
File :装载点。 |
卸载 Zip
public void unmountZip (File mountDir)
卸载已装载的 zip 文件。
参数 | |
---|---|
mountDir |
File :装载点。 |