Entrée IFile
public
interface
IFileEntry
com.android.tradefed.device.IFileEntry |
Définition d'interface qui fournit un contrat
plus simple et fictif pour
FileEntry
.
À FAIRE: déplacer dans ddmlib
Résumé
Méthodes publiques | |
---|---|
abstract
IFileEntry
|
findChild(String name)
Trouve un enfant |
abstract
|
getChildren(boolean useCache)
Renvoie les enfants d'une |
abstract
String
|
getDate()
Enveloppe pour |
abstract
FileListingService.FileEntry
|
getFileEntry()
Renvoyez la référence au |
abstract
String
|
getFullEscapedPath()
Enveloppe pour |
abstract
String
|
getFullPath()
Enveloppe pour |
abstract
String
|
getName()
Enveloppe pour |
abstract
String
|
getPermissions()
Enveloppe pour |
abstract
String
|
getTime()
Enveloppe pour |
abstract
boolean
|
isAppFileName()
Enveloppe pour |
abstract
boolean
|
isDirectory()
Enveloppe pour |
Méthodes publiques
findChild
public abstract IFileEntry findChild (String name)
Trouve un enfant IFileEntry
portant le prénom.
En gros, un wrapper pour FileEntry#findChild(String)
qui
commence aussi par rechercher dans les enfants mis en cache le fichier portant le nom donné. S'il est introuvable,
actualisez la liste des fichiers enfants mis en cache, puis réessayez.
Paramètres | |
---|---|
name |
String |
Renvoie | |
---|---|
IFileEntry |
Génère | |
---|---|
|
com.android.tradefed.device.DeviceNotAvailableException |
DeviceNotAvailableException |
EnfantsEnfants
public abstractgetChildren (boolean useCache)
Renvoie les enfants d'une IFileEntry
.
En gros, un wrapper
synchrone pour
FileListingService#getChildren(FileEntry, boolean, FileListingService.IListingReceiver)
Paramètres | |
---|---|
useCache |
boolean : true si les enfants mis en cache doivent être renvoyés s'ils sont disponibles.
false si une nouvelle commande ls doit être forcée. |
Renvoie | |
---|---|
|
liste de sous-fichiers |
Génère | |
---|---|
|
com.android.tradefed.device.DeviceNotAvailableException |
DeviceNotAvailableException |
getFileEntry
public abstract FileListingService.FileEntry getFileEntry ()
Renvoyez la référence au FileEntry
ddmlib.
Renvoie | |
---|---|
FileListingService.FileEntry |
getFullEscapedPath
public abstract String getFullEscapedPath ()
Enveloppe pour FileEntry#getFullEscapedPath()
.
Renvoie | |
---|---|
String |
getFullPath
public abstract String getFullPath ()
Enveloppe pour FileEntry#getFullPath()
.
Renvoie | |
---|---|
String |
getPermissions
public abstract String getPermissions ()
Enveloppe pour FileEntry#getPermissions()
.
Renvoie | |
---|---|
String |
NomFichierApplication
public abstract boolean isAppFileName ()
Enveloppe pour FileEntry#isAppFileName()
.
Renvoie | |
---|---|
boolean |
isDirectory
public abstract boolean isDirectory ()
Enveloppe pour FileEntry#isDirectory()
.
Renvoie | |
---|---|
boolean |