The deleteFile method of the ClientStore Class contains the following signatures:
deleteFile(String stgfilename)
deleteFile(String stgfilename, int flags)
Deletes the specified file.
public void deleteFile(String stgfilename) throws IOException;
stgfilename | The name of the file to delete. |
IOException if there is an error while attempting to delete the file.
Deletes the specified file.
public void deleteFile(String stgfilename, int flags) throws IOException;
stgfilename | The name of the file to delete. |
flags | A value that indicates the storage area in which to delete stgfilename. It can be either or both of the STORE_FL_LOCAL and STORE_FL_ROAMING flags. |
IOException if there is an error while attempting to delete the file.