public interface IAbstractResource
This somewhat limited interface is designed to let classes use file-system resources, without having the manually handle either the standard Java file or the Eclipse file API..
Modifier and Type | Method and Description |
---|---|
boolean |
delete()
Deletes the resource.
|
boolean |
exists()
Returns whether the resource actually exists.
|
java.lang.String |
getName()
Returns the name of the resource.
|
java.lang.String |
getOsLocation()
Returns the OS path of the folder location (may be absolute).
|
IAbstractFolder |
getParentFolder()
Returns the parent folder or null if there is no parent.
|
java.lang.String |
getPath()
Returns the path of the resource.
|
java.lang.String getName()
java.lang.String getOsLocation()
java.lang.String getPath()
boolean exists()
IAbstractFolder getParentFolder()
boolean delete()