The isExpendable method of the ClientStore Class contains the following signatures:
isExpendable(String stgfilename)
isExpendable(String stgfilename, int flags)
Determines whether the specified file can be deleted when the client storage becomes full.
public boolean isExpendable(String stgfilename) throws IOException;
Returns true if the file was opened with the OPEN_FL_EXPENDABLE flag.
stgfilename | The name of the file to check. |
IOException if the file name is not valid or if the file cannot be found.
OPEN_FL_EXPENDABLE, markFileAsExpendable, purgeExpendableFiles
Determines whether the specified file can be deleted when the client storage becomes full.
public boolean isExpendable(String stgfilename, int flags) throws IOException;
Returns true if the file was opened with the OPEN_FL_EXPENDABLE flag.
stgfilename | The name of the file to check. |
flags | A value that indicates the storage area in which to search for stgfilename. It can be one or both of STORE_FL_LOCAL and STORE_FL_ROAMING. |
IOException if the file name is not valid or if the file cannot be found.